vint-method {rPorta}R Documentation

Method "vint"

Description

enumeration of integral inner points of a linear system

Usage

## S4 method for signature 'ieqFile': 
vint(object)

Arguments

object Object of class ieqFile

Details

vint enumerates all integral points within given bounds that are valid for a linear system.

In object lower and upper bounds for each component must be given. The correponding slots are lower_bounds and upper_bounds. They have to contain exactly dim integers. The i-th entry of such a line gives the upper resp. lower bound for the i-th component.

Value

Returns the found integral points in a poiFile object.

Author(s)

Robin Nunkesser Robin.Nunkesser@tu-dortmund.de

See Also

"ieqFile"

Examples

# A very simple example
example<-as.ieqFile(cbind(diag(3),rep(0,3)))
example@lower_bounds<-c(-1,-1,-1)
example@upper_bounds<-c(1,1,1)
vint(example)

[Package rPorta version 0.1-9 Index]