GRBModel::addGenConstrMax()

Add a new general constraint of type GRB_GENCONSTR_MAX to a model.

A MAX constraint $r = \max\{x_1,\ldots,x_n,c\}$ states that the resultant variable $r$ should be equal to the maximum of the operand variables $x_1,\ldots,x_n$ and the constant $c$.

GRBGenConstr addGenConstrMax ( GRBVar resvar,
    const GRBVar* vars,
    int len,
    double constant=-GRB_INFINITY,
    string name="" )