GRBModel.AddConstr()

Add a single linear constraint to a model. Multiple signatures are available.

GRBConstr AddConstr ( GRBLinExpr lhsExpr,
    char sense,
    GRBLinExpr rhsExpr,
    string name )
    Add a single linear constraint to a model.

    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 )
    Add a single linear constraint to a model.

    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.