org.apache.commons.math3.optim.nonlinear.scalar.gradient
public static enum NonLinearConjugateGradientOptimizer.Formula extends java.lang.Enum<NonLinearConjugateGradientOptimizer.Formula>
Enum Constant and Description |
---|
FLETCHER_REEVES
Fletcher-Reeves formula.
|
POLAK_RIBIERE
Polak-Ribière formula.
|
Modifier and Type | Method and Description |
---|---|
static NonLinearConjugateGradientOptimizer.Formula |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NonLinearConjugateGradientOptimizer.Formula[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NonLinearConjugateGradientOptimizer.Formula FLETCHER_REEVES
public static final NonLinearConjugateGradientOptimizer.Formula POLAK_RIBIERE
public static NonLinearConjugateGradientOptimizer.Formula[] values()
for (NonLinearConjugateGradientOptimizer.Formula c : NonLinearConjugateGradientOptimizer.Formula.values()) System.out.println(c);
public static NonLinearConjugateGradientOptimizer.Formula 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 nullCopyright (c) 2003-2013 Apache Software Foundation