set.constr.value {lpSolveAPI} | R Documentation |
Set constraint values in an lpSolve linear program model object.
set.constr.value(lprec, rhs = NULL, lhs = NULL, constraints = 1:m)
lprec |
an lpSolve linear program model object. |
rhs |
a numeric vector the same length as constraints containing the right-hand-side values to be set. If NULL no right-hand-side values are set. |
lhs |
a numeric vector the same length as constraints containing the left-hand-side values to be set. If NULL no left-hand-side values are set. |
constraints |
a numeric vector of unique values from the set {1, ..., m} (where m is the number of constraints in lprec ) specifying which constraints to set. |
a logical vector indicating whether the constraint values were successfully set is invisibly returned.
Kjell Konis kjell.konis@epfl.ch
http://lpsolve.sourceforge.net/5.5/index.htm