vint-method {rPorta} | R Documentation |
enumeration of integral inner points of a linear system
## S4 method for signature 'ieqFile': vint(object)
object |
Object of class ieqFile |
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.
Returns the found integral points in a poiFile
object.
Robin Nunkesser Robin.Nunkesser@tu-dortmund.de
"ieqFile"
# 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)