public static enum KKTSolver.Status extends java.lang.Enum<KKTSolver.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.
|
NUMERIC_ERROR
A numeric error was detected in the solution.
|
SOLVED
A solution wasfound.
|
Modifier and Type | Method and Description |
---|---|
static KKTSolver.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KKTSolver.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KKTSolver.Status SOLVED
public static final KKTSolver.Status NO_SOLUTION
public static final KKTSolver.Status ITERATION_LIMIT_EXCEEDED
public static final KKTSolver.Status NUMERIC_ERROR
public static KKTSolver.Status[] values()
for (KKTSolver.Status c : KKTSolver.Status.values()) System.out.println(c);
public static KKTSolver.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