Try our new documentation site (beta).
GRBModel.getGenConstrMax
Retrieve the data associated with a general constraint of type MAX. Calling this method for a general constraint of a different type leads to an exception. You can query the GenConstrType attribute to determine the type of the general constraint.
Typical usage is to call this routine twice.
In the first call, you specify the requested general constraint,
with a null
value for the vars
argument.
The routine returns the total number of operand variables in the
specified general constraint in len
.
That allows you to make certain that the vars
array is of
sufficient size to hold the result of the second call.
See also addGenConstrMax for a description of the semantics of this general constraint type.
void | getGenConstrMax ( | GRBGenConstr | genc, |
GRBVar[] | resvar, | ||
GRBVar[] | vars, | ||
int[] | len, | ||
double[] | constant ) |
-
Arguments:
genc: The general constraint object.
Any of the following arguments can be null.
resvar: Store the resultant variable of the constraint at resvar[0].
vars: Array to store the operand variables of the constraint.
len: Store the number of operand variables of the constraint at len[0].
constant: Store the additional constant operand of the constraint at constant[0].