ilog.cplex
Class IloCplex.IntegerFeasibilityStatus

java.lang.Object
  |
  +--ilog.cplex.IloCplex.IntegerFeasibilityStatus

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

This class is used to determine integer feasibility. This class determines an integer feasibility status indicating whether IloCplex considers the node to be integer feasible or not. It is determined at each node during branch and cut search, after solving the node LP, each variable, or SOS set.

See Also:
IloCplex.ControlCallback

Field Summary
static IloCplex.IntegerFeasibilityStatus Feasible
          Indicates that a variable or SOS is considered to be integer feasible in the current node solution.
static IloCplex.IntegerFeasibilityStatus Implied
          Indicates that a variable has been presolved out, but would become integer feasible when all the remaining integer variables are integer feasible.
static IloCplex.IntegerFeasibilityStatus Infeasible
          Indicates that a variable or SOS is considered to be integer infeasible in the current node solution.
 
Constructor Summary
IloCplex.IntegerFeasibilityStatus()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

Feasible

public static final IloCplex.IntegerFeasibilityStatus Feasible
Indicates that a variable or SOS is considered to be integer feasible in the current node solution.

Implied

public static final IloCplex.IntegerFeasibilityStatus Implied
Indicates that a variable has been presolved out, but would become integer feasible when all the remaining integer variables are integer feasible.

Infeasible

public static final IloCplex.IntegerFeasibilityStatus Infeasible
Indicates that a variable or SOS is considered to be integer infeasible in the current node solution.
Constructor Detail

IloCplex.IntegerFeasibilityStatus

public IloCplex.IntegerFeasibilityStatus()