Creates a new Less Than or Equals constraint
This example makes a constraint "-2y <= 3"
(assumes earlier call like:MIPWrapper mip = makeNewMaxMIP(), and a Variable y)
Constraint c = beginNewLEQConstraint(3);
c.addTerm(y, -2);
mip.endConstraint(c);
* @param constant is the value that is on the right hand side of the equation.
BOOLEAN -
Static variable in class edu.harvard.econcs.jopt.solver.mip.VarType