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