|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--ilog.cplex.IloCplex.BasisStatus
Enumeration of possible basis status codes.
A basis captures the essence of a solution of the simplex algorithm and
can be used, among other things, to warm start an optimization with the
simplex algorithm. The class IloCplex.BasisStatus
distinguishes three nonbasic statuses and one basic status for the
variables (columns) and constraints (rows) of an LP or QP.
Field Summary | |
static IloCplex.BasisStatus |
AtLower
This status indicates that the variable or slack corresponding to a constraint is nonbasic and at its bound. |
static IloCplex.BasisStatus |
AtUpper
This status indicates that the variable or slack corresponding to a constraint is nonbasic, and at its upper bound. |
static IloCplex.BasisStatus |
Basic
This status indicates that the variable or slack corresponding to a constraint is basic. |
static IloCplex.BasisStatus |
FreeOrSuperbasic
This status indicates that the variable is nonbasic, but not at a bound. |
static IloCplex.BasisStatus |
NotABasicStatus
This status represents an illegal basis status. |
Method Summary | |
boolean |
equals(java.lang.Object obj)
This method can be use to test whether two basis statuses are equal. |
java.lang.String |
toString()
Transforms the status into a human readable string. |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
public static final IloCplex.BasisStatus NotABasicStatus
public static final IloCplex.BasisStatus AtLower
public static final IloCplex.BasisStatus Basic
public static final IloCplex.BasisStatus AtUpper
public static final IloCplex.BasisStatus FreeOrSuperbasic
0
or it is
set to a specific value as a super-basic variable.
Method Detail |
public java.lang.String toString()
toString
in class java.lang.Object
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |