ilog.cplex
Class IloCplex.CplexStatus

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

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

Enumeration of possible IloCplex algorithm status codes.

See Also:
IloCplex.getCplexStatus(), IloCplex.getCplexSubStatus()

Field Summary
static IloCplex.CplexStatus AbortDualObjLim
          Solution Status constant.
static IloCplex.CplexStatus AbortItLim
          Solution Status constant.
static IloCplex.CplexStatus AbortObjLim
          Solution Status constant.
static IloCplex.CplexStatus AbortPrimObjLim
          Solution Status constant.
static IloCplex.CplexStatus AbortTimeLim
          Solution Status constant.
static IloCplex.CplexStatus AbortUser
          Solution Status constant.
static IloCplex.CplexStatus FailFeas
          Solution Status constant.
static IloCplex.CplexStatus FailFeasNoTree
          Solution Status constant.
static IloCplex.CplexStatus FailInfeas
          Solution Status constant.
static IloCplex.CplexStatus FailInfeasNoTree
          Solution Status constant.
static IloCplex.CplexStatus FeasibleRelaxed
          Solution Status constant.
static IloCplex.CplexStatus Infeasible
          Solution Status constant.
static IloCplex.CplexStatus InfOrUnbd
          Solution Status constant.
static IloCplex.CplexStatus MemLimFeas
          Solution Status constant.
static IloCplex.CplexStatus MemLimInfeas
          Solution Status constant.
static IloCplex.CplexStatus NodeLimFeas
          Solution Status constant.
static IloCplex.CplexStatus NodeLimInfeas
          Solution Status constant.
static IloCplex.CplexStatus NumBest
          Solution Status constant.
static IloCplex.CplexStatus Optimal
          Solution Status constant.
static IloCplex.CplexStatus OptimalFaceUnbounded
          Solution Status constant.
static IloCplex.CplexStatus OptimalInfeas
          Solution Status constant.
static IloCplex.CplexStatus OptimalRelaxed
          Solution Status constant.
static IloCplex.CplexStatus OptimalTol
          Solution Status constant.
static IloCplex.CplexStatus SolLim
          Solution Status constant.
static IloCplex.CplexStatus Unbounded
          Solution Status constant.
static IloCplex.CplexStatus Unknown
          Solution Status constant.
 
Method Summary
 boolean equals(java.lang.Object obj)
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

Unknown

public static final IloCplex.CplexStatus Unknown
Solution Status constant. See 0 in the C API, or IloCplex::CplexStatus::Unknown in the C++ API for further information


Optimal

public static final IloCplex.CplexStatus Optimal
Solution Status constant. See CPX_STAT_OPTIMAL in the C API, or IloCplex::CplexStatus::Optimal in the C++ API for further information


Unbounded

public static final IloCplex.CplexStatus Unbounded
Solution Status constant. See CPX_STAT_UNBOUNDED in the C API, or IloCplex::CplexStatus::Unbounded in the C++ API for further information


Infeasible

public static final IloCplex.CplexStatus Infeasible
Solution Status constant. See CPX_STAT_INFEASIBLE in the C API, or IloCplex::CplexStatus::Infeasible in the C++ API for further information


InfOrUnbd

public static final IloCplex.CplexStatus InfOrUnbd
Solution Status constant. See CPX_STAT_INForUNBD in the C API, or IloCplex::CplexStatus::InfOrUnbd in the C++ API for further information


OptimalInfeas

public static final IloCplex.CplexStatus OptimalInfeas
Solution Status constant. See CPX_STAT_OPTIMAL_INFEAS in the C API, or IloCplex::CplexStatus::OptimalInfeas in the C++ API for further information


NumBest

public static final IloCplex.CplexStatus NumBest
Solution Status constant. See CPX_STAT_NUM_BEST in the C API, or IloCplex::CplexStatus::NumBest in the C++ API for further information


FeasibleRelaxed

public static final IloCplex.CplexStatus FeasibleRelaxed
Solution Status constant. See CPX_STAT_FEASIBLE_RELAXED in the C API, or IloCplex::CplexStatus::FeasibleRelaxed in the C++ API for further information


OptimalRelaxed

public static final IloCplex.CplexStatus OptimalRelaxed
Solution Status constant. See CPX_STAT_OPTIMAL_RELAXED in the C API, or IloCplex::CplexStatus::OptimalRelaxed in the C++ API for further information


AbortObjLim

public static final IloCplex.CplexStatus AbortObjLim
Solution Status constant. See CPX_STAT_ABORT_OBJ_LIM in the C API, or IloCplex::CplexStatus::AbortObjLim in the C++ API for further information


AbortPrimObjLim

public static final IloCplex.CplexStatus AbortPrimObjLim
Solution Status constant. See CPX_STAT_ABORT_PRIM_OBJ_LIM in the C API, or IloCplex::CplexStatus::AbortPrimObjLim in the C++ API for further information


AbortDualObjLim

public static final IloCplex.CplexStatus AbortDualObjLim
Solution Status constant. See CPX_STAT_ABORT_DUAL_OBJ_LIM in the C API, or IloCplex::CplexStatus::AbortDualObjLim in the C++ API for further information


AbortItLim

public static final IloCplex.CplexStatus AbortItLim
Solution Status constant. See CPX_STAT_ABORT_IT_LIM in the C API, or IloCplex::CplexStatus::AbortItLim in the C++ API for further information


AbortTimeLim

public static final IloCplex.CplexStatus AbortTimeLim
Solution Status constant. See CPX_STAT_ABORT_TIME_LIM in the C API, or IloCplex::CplexStatus::AbortTimeLim in the C++ API for further information


AbortUser

public static final IloCplex.CplexStatus AbortUser
Solution Status constant. See CPX_STAT_ABORT_USER in the C API, or IloCplex::CplexStatus::AbortUser in the C++ API for further information


OptimalFaceUnbounded

public static final IloCplex.CplexStatus OptimalFaceUnbounded
Solution Status constant. See CPX_STAT_OPTIMAL_FACE_UNBOUNDED in the C API, or IloCplex::CplexStatus::OptimalFaceUnbounded in the C++ API for further information


OptimalTol

public static final IloCplex.CplexStatus OptimalTol
Solution Status constant. See CPXMIP_OPTIMAL_TOL in the C API, or IloCplex::CplexStatus::OptimalTol in the C++ API for further information


SolLim

public static final IloCplex.CplexStatus SolLim
Solution Status constant. See CPXMIP_SOL_LIM in the C API, or IloCplex::CplexStatus::SolLim in the C++ API for further information


NodeLimFeas

public static final IloCplex.CplexStatus NodeLimFeas
Solution Status constant. See CPXMIP_NODE_LIM_FEAS in the C API, or IloCplex::CplexStatus::NodeLimFeas in the C++ API for further information


NodeLimInfeas

public static final IloCplex.CplexStatus NodeLimInfeas
Solution Status constant. See CPXMIP_NODE_LIM_INFEAS in the C API, or IloCplex::CplexStatus::NodeLimInfeas in the C++ API for further information


FailFeas

public static final IloCplex.CplexStatus FailFeas
Solution Status constant. See CPXMIP_FAIL_FEAS in the C API, or IloCplex::CplexStatus::FailFeas in the C++ API for further information


FailInfeas

public static final IloCplex.CplexStatus FailInfeas
Solution Status constant. See CPXMIP_FAIL_INFEAS in the C API, or IloCplex::CplexStatus::FailInfeas in the C++ API for further information


MemLimFeas

public static final IloCplex.CplexStatus MemLimFeas
Solution Status constant. See CPXMIP_MEM_LIM_FEAS in the C API, or IloCplex::CplexStatus::MemLimFeas in the C++ API for further information


MemLimInfeas

public static final IloCplex.CplexStatus MemLimInfeas
Solution Status constant. See CPXMIP_MEM_LIM_INFEAS in the C API, or IloCplex::CplexStatus::MemLimInfeas in the C++ API for further information


FailFeasNoTree

public static final IloCplex.CplexStatus FailFeasNoTree
Solution Status constant. See CPXMIP_FAIL_FEAS_NO_TREE in the C API, or IloCplex::CplexStatus::FailFeasNoTree in the C++ API for further information


FailInfeasNoTree

public static final IloCplex.CplexStatus FailInfeasNoTree
Solution Status constant. See CPXMIP_FAIL_INFEAS_NO_TREE in the C API, or IloCplex::CplexStatus::FailInfeasNoTree in the C++ API for further information

Method Detail

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object

equals

public boolean equals(java.lang.Object obj)
Overrides:
equals in class java.lang.Object