Uses of Class
edu.harvard.econcs.jopt.solver.mip.Variable

Packages that use Variable
edu.harvard.econcs.jopt.solver   
edu.harvard.econcs.jopt.solver.mip   
 

Uses of Variable in edu.harvard.econcs.jopt.solver
 

Methods in edu.harvard.econcs.jopt.solver that return Variable
 Variable IMIP.getVar(java.lang.String name)
           
 

Methods in edu.harvard.econcs.jopt.solver with parameters of type Variable
 java.lang.String IMIP.add(Variable var)
          Adds a variable to the MIP formulation.
 void IMIP.addObjectiveTerm(Variable var, double coefficient)
          Creates and then adds a Term to the objective function.
 MIPInfeasibleException.Cause MIPInfeasibleException.getCause(Variable v)
           
 boolean IMIP.getProposedBooleanValue(Variable var)
          returns the currently proposed value for Boolean variable var
 double IMIP.getProposedDoubleValue(Variable var)
          returns the currently proposed value for Double variable var
 int IMIP.getProposedIntValue(Variable var)
          returns the currently proposed value for Integer variable var
 void IMIP.proposeValue(Variable var, boolean value)
          Sets proposed value for this variable
 void IMIP.proposeValue(Variable var, double value)
          Sets proposed value for this variable
 void IMIP.proposeValue(Variable var, int value)
          Sets proposed value for this variable
 void IMIP.remove(Variable var)
          Removes a variable from the MIP formulation.
 void IMIP.removeProposedValue(Variable var)
          Removes proposed value for this variable
 

Uses of Variable in edu.harvard.econcs.jopt.solver.mip
 

Methods in edu.harvard.econcs.jopt.solver.mip that return Variable
 Variable MIP.getVar(java.lang.String name)
           
 Variable MIPWrapper.makeNewBooleanVar(java.lang.String name)
          Makes a new indicator (boolean) variable that can range from 0 to 1
 Variable MIPWrapper.makeNewDoubleVar(java.lang.String name)
          Makes a new double variable that can range from -inf to inf
 Variable MIPWrapper.makeNewIntegerVar(java.lang.String name)
          Makes a new Integer variable that can range from -inf to inf
 Variable Variable.typedClone()
           
 

Methods in edu.harvard.econcs.jopt.solver.mip with parameters of type Variable
 java.lang.String MIP.add(Variable var)
           
 void MIP.addObjectiveTerm(Variable var, double coefficient)
           
 void Constraint.addTerm(Variable var, double coefficient)
           
 boolean MIP.getProposedBooleanValue(Variable var)
           
 double MIP.getProposedDoubleValue(Variable var)
           
 int MIP.getProposedIntValue(Variable var)
           
 void MIP.proposeValue(Variable var, boolean value)
          Sets proposed value for this variable
 void MIP.proposeValue(Variable var, double value)
          Sets proposed value for this variable
 void MIP.proposeValue(Variable var, int value)
          Sets proposed value for this variable
 void MIP.remove(Variable var)
           
 void MIP.removeProposedValue(Variable var)
          Removes proposed value for this variable
 

Constructors in edu.harvard.econcs.jopt.solver.mip with parameters of type Variable
Term(Variable var, double coefficient)