Try our new documentation site (beta).
Filter Content By
Version
Text Search
${sidebar_list_label} - Back
Filter by Language
Next: GRBModel.AddGenConstrIndicator() Up: GRBModel.AddGenConstrXxx() Previous: GRBModel.AddGenConstrOr()
GRBModel.AddGenConstrNorm()
Add a new general constraint of type GRB.GENCONSTR_NORM to a model.
A NORM constraint states that the resultant variable should be equal to the vector norm of the argument vector .
GRBGenConstr | AddGenConstrNorm ( | GRBVar | resvar, |
GRBVar[] | vars, | ||
double | which, | ||
string | name ) |
Arguments:
resvar: The resultant variable of the new constraint.
vars: Array of variables that are the operands of the new constraint. Note that this array may not contain duplicates.
which: Which norm to use. Options are 0, 1, 2, and GRB.INFINITY.
name: Name for the new general constraint.
Return value:
New general constraint.
Next: GRBModel.AddGenConstrIndicator() Up: GRBModel.AddGenConstrXxx() Previous: GRBModel.AddGenConstrOr()