A B C D E F G H I L M N O P R S T U V W Z

B

BARRIER_DISPLAY - Static variable in class edu.harvard.econcs.jopt.solver.SolveParam
Amount of barrier progress information to be displayed [CPLEX]
beginNewEQConstraint(double) - Method in class edu.harvard.econcs.jopt.solver.mip.MIPWrapper
Creates a new Less Equals constraint
beginNewGEQConstraint(double) - Method in class edu.harvard.econcs.jopt.solver.mip.MIPWrapper
Creates a new Less Than or Equals constraint
beginNewLEQConstraint(double) - Method in class edu.harvard.econcs.jopt.solver.mip.MIPWrapper
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
 

A B C D E F G H I L M N O P R S T U V W Z