Add a single linear constraint to a model. Multiple signatures are available.
| GRBConstr | AddConstr ( | GRBLinExpr | lhsExpr, |
| char | sense, | ||
| GRBLinExpr | rhsExpr, | ||
| string | name ) |
Arguments:
lhsExpr: Left-hand side expression for new linear constraint.
sense: Sense for new linear constraint (GRB.LESS_EQUAL, GRB.EQUAL, or GRB.GREATER_EQUAL).
rhsExpr: Right-hand side expression for new linear constraint.
name: Name for new constraint.
Return value:
New constraint object.
| GRBConstr | AddConstr ( | GRBTempConstr | tempConstr, |
| string | name ) |
Arguments:
tempConstr: Temporary constraint object, created by an overloaded comparison operator. See GRBTempConstr for more information.
name: Name for new constraint.
Return value:
New constraint object.