pub enum Status {
Show 21 variants
Error,
NoRatioTester,
NoPricer,
NoSolver,
NotInit,
AbortExdecomp,
AbortDecomp,
AbortCycling,
AbortTime,
AbortIter,
AbortValue,
Singular,
NoProblem,
Regular,
Running,
Unknown,
Optimal,
Unbounded,
Infeasible,
InfOrUnbd,
OptimalUnscaledViolations,
}
Expand description
Status of the solver
Variants§
Error
An error occurred
NoRatioTester
No ratiotester loaded
NoPricer
No pricer loaded
NoSolver
No linear solver loaded
NotInit
Not initialised error
AbortExdecomp
Solve() aborted to exit decomposition simplex
AbortDecomp
Solve() aborted due to commence decomposition simplex
AbortCycling
Solve() aborted due to detection of cycling
AbortTime
Solve() aborted due to time limit
AbortIter
Solve() aborted due to iteration limit
AbortValue
Solve() aborted due to objective limit
Singular
Basis is singular, numerical troubles?
NoProblem
No Problem has been loaded
Regular
LP has a usable Basis (maybe LP is changed)
Running
Algorithm is running
Unknown
Nothing known on loaded problem
Optimal
LP has been solved to optimality
Unbounded
LP has been proven to be primal unbounded
Infeasible
LP has been proven to be primal infeasible
InfOrUnbd
LP is primal infeasible or unbounded
OptimalUnscaledViolations
LP has been solved to optimality but unscaled solution contains violations