|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DantzigLCPSolver.Status>
maspack.solvers.DantzigLCPSolver.Status
public static enum DantzigLCPSolver.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 DantzigLCPSolver.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static DantzigLCPSolver.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 DantzigLCPSolver.Status SOLVED
public static final DantzigLCPSolver.Status NO_SOLUTION
public static final DantzigLCPSolver.Status ITERATION_LIMIT_EXCEEDED
public static final DantzigLCPSolver.Status NUMERIC_ERROR
Method Detail |
---|
public static DantzigLCPSolver.Status[] values()
for (DantzigLCPSolver.Status c : DantzigLCPSolver.Status.values()) System.out.println(c);
public static DantzigLCPSolver.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 |