GRBModel.addGenConstrIndicator()

Add a new general constraint of type GRB.GENCONSTR_INDICATOR to a model.

An INDICATOR constraint $z = f \rightarrow a^Tx \leq b$ states that if the binary indicator variable $z$ is equal to $f \in \{0,1\}$, then the linear constraint $a^Tx \leq b$ should hold. On the other hand, if $z = 1-f$, the linear constraint may be violated. The sense of the linear constraint can also be specified to be $=$ or $\geq$.

Note that the indicator variable $z$ of a constraint will be forced to be binary; independently of how it was created.

GRBGenConstr addGenConstrIndicator ( GRBVar binvar,
    int binval,
    GRBLinExpr expr,
    char sense,
    double rhs,
    String name )