|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<KKTSolver.Status>
maspack.solvers.KKTSolver.Status
public static enum KKTSolver.Status
Described whether or not a solution was found.
Enum Constant Summary | |
---|---|
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 was found. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
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
Method Detail |
---|
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 name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |