public enum CobylaExitStatus extends java.lang.Enum<CobylaExitStatus>
Enum Constant and Description |
---|
DivergingRoundingErrors
Size of rounding error is becoming damaging, terminating prematurely.
|
MaxIterationsReached
Maximum number of iterations (function/constraints evaluations) reached during optimization.
|
Normal
Optimization successfully completed.
|
TerminateRequested
Termination requested.
|
Modifier and Type | Method and Description |
---|---|
static CobylaExitStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CobylaExitStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CobylaExitStatus Normal
public static final CobylaExitStatus MaxIterationsReached
public static final CobylaExitStatus DivergingRoundingErrors
public static final CobylaExitStatus TerminateRequested
public static CobylaExitStatus[] values()
for (CobylaExitStatus c : CobylaExitStatus.values()) System.out.println(c);
public static CobylaExitStatus 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