|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Newton.ExitCondition>
net.von_gagern.martin.confoo.opt.Newton.ExitCondition
public static enum Newton.ExitCondition
Enumeration of possible reasons for the termination of an optimization.
This enumeration identifies the possible reasons that can cause the optimization to terminate without throwing an exception.
Newton.getExitCondition()| Enum Constant Summary | |
|---|---|
DELTA
Exit due to a small change in parameter space. |
|
ESTIMATE
Exit due to a low estimate of residual value error. |
|
GRADIENT
Exit due to a small gradient. |
|
ITERATIONS
Exit due to maximum iteration count. |
|
| Method Summary | |
|---|---|
static Newton.ExitCondition |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Newton.ExitCondition[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, 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 Newton.ExitCondition GRADIENT
public static final Newton.ExitCondition ESTIMATE
public static final Newton.ExitCondition DELTA
public static final Newton.ExitCondition ITERATIONS
| Method Detail |
|---|
public static Newton.ExitCondition[] values()
for (Newton.ExitCondition c : Newton.ExitCondition.values()) System.out.println(c);
public static Newton.ExitCondition valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||