ilog.cplex
Class IloCplex.VariableSelect

java.lang.Object
  |
  +--ilog.cplex.IloCplex.VariableSelect
Enclosing class:
IloCplex

public static class IloCplex.VariableSelect
extends java.lang.Object

Enumeration of possible values for the IloCplex.IntParam.VarSel parameter. Use these values with the method IloCplex.setParam(IloCplex.IntParam.VarSel, value).


Field Summary
static int DefaultVarSel
          Branch variable automatically selected.
static int MaxInfeas
          Branch on variable with maximum infeasibility.
static int MinInfeas
          Branch on variable with minimum infeasibility.
static int Pseudo
          Branch based on pseudo costs.
static int PseudoReduced
          Branch based on pseudo reduced costs.
static int Strong
          Strong branching.
 
Constructor Summary
IloCplex.VariableSelect()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

MinInfeas

public static final int MinInfeas
Branch on variable with minimum infeasibility.

See Also:
Constant Field Values

DefaultVarSel

public static final int DefaultVarSel
Branch variable automatically selected.

See Also:
Constant Field Values

MaxInfeas

public static final int MaxInfeas
Branch on variable with maximum infeasibility.

See Also:
Constant Field Values

Pseudo

public static final int Pseudo
Branch based on pseudo costs.

See Also:
Constant Field Values

Strong

public static final int Strong
Strong branching.

See Also:
Constant Field Values

PseudoReduced

public static final int PseudoReduced
Branch based on pseudo reduced costs.

See Also:
Constant Field Values
Constructor Detail

IloCplex.VariableSelect

public IloCplex.VariableSelect()