public static enum ConjugateGradient.Update extends java.lang.Enum<ConjugateGradient.Update>
Enum Constant and Description |
---|
BEALE_SORENSON_HESTENES_STIEFEL
Use the Beale-Sorenson-Hestenes-Stiefel method
|
FLETCHER_REEVES
Use the Fletcher-Reevs method
|
POLAK_RIBIERE
Use the Polak-Ribiere method
|
Modifier and Type | Method and Description |
---|---|
static ConjugateGradient.Update |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConjugateGradient.Update[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConjugateGradient.Update FLETCHER_REEVES
public static final ConjugateGradient.Update POLAK_RIBIERE
public static final ConjugateGradient.Update BEALE_SORENSON_HESTENES_STIEFEL
public static ConjugateGradient.Update[] values()
for (ConjugateGradient.Update c : ConjugateGradient.Update.values()) System.out.println(c);
public static ConjugateGradient.Update 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