Overview | Group | Tree | Graph | Index | Concepts |
IloAlgorithm
.
IloAlgorithm
is the base class of algorithms in Concert Technology,
and IloAlgorithm::Status
is an enumeration limited in scope to the
class IloAlgorithm
. The member function
IloAlgorithm::getStatus
returns a status indicating
information about the current model and the solution.
Unknown
indicates that the algorithm has no information about the
solution of the model.
Feasible
indicates that the algorithm found a feasible solution
(that is, an assignment of values to variables that satisfies the constraints of
the model, though it may not necessarily be optimal). The member functions
IloAlgorithm::getValue
access this feasible solution.
Optimal
indicates that the algorithm found an optimal solution
(that is, an assignment of values to variables that satisfies all the constraints of
the model and that is proved optimal with respect to the objective of the model).
The member functions IloAlgorithm::getValue
access
this optimal solution.
Infeasible
indicates that the algorithm proved the model infeasible;
that is, it is not possible to find an assignment of values to variables satisfying
all the constraints in the model.
Unbounded
indicates that the algorithm proved the model unbounded.
InfeasibleOrUnbounded
indicates that the model is infeasible or
unbounded.
Error
indicates that an error occurred and, on platforms that
support exceptions, that an exception has been thrown.
See Also:
IloAlgorithm, operator<<, IloCplex::Status documented in the ILOG CPLEX Reference Manual
Fields |
---|
Unknown | |
Feasible | |
Optimal | |
Infeasible | |
Unbounded | |
InfeasibleOrUnbounded | |
Error |