public static enum DantzigQPSolver.Status extends java.lang.Enum<DantzigQPSolver.Status>
Enum Constant and Description |
---|
ITERATION_LIMIT_EXCEEDED
Iteration limit was exceeded, most likely due to numerical
ill-conditioning.
|
NO_SOLUTION
No solution appears to be possible.
|
NOT_SPD
H is not symmetric positive definite.
|
NUMERIC_ERROR
A numeric error was detected in the solution.
|
SINGULAR_SYSTEM
H, or H combined with equality constraints, is singular
within working precision.
|
SOLVED
A solution was found.
|
Modifier and Type | Method and Description |
---|---|
static DantzigQPSolver.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DantzigQPSolver.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DantzigQPSolver.Status SOLVED
public static final DantzigQPSolver.Status NO_SOLUTION
public static final DantzigQPSolver.Status ITERATION_LIMIT_EXCEEDED
public static final DantzigQPSolver.Status NUMERIC_ERROR
public static final DantzigQPSolver.Status NOT_SPD
public static final DantzigQPSolver.Status SINGULAR_SYSTEM
public static DantzigQPSolver.Status[] values()
for (DantzigQPSolver.Status c : DantzigQPSolver.Status.values()) System.out.println(c);
public static DantzigQPSolver.Status valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null