| Package | Description |
|---|---|
| org.hipparchus.optim.nonlinear.scalar.gradient |
This package provides optimization algorithms that require derivatives.
|
| Modifier and Type | Method | Description |
|---|---|---|
static NonLinearConjugateGradientOptimizer.Formula |
NonLinearConjugateGradientOptimizer.Formula.valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static NonLinearConjugateGradientOptimizer.Formula[] |
NonLinearConjugateGradientOptimizer.Formula.values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Constructor | Description |
|---|---|
NonLinearConjugateGradientOptimizer(NonLinearConjugateGradientOptimizer.Formula updateFormula,
ConvergenceChecker<PointValuePair> checker) |
Constructor with default tolerances for the line search (1e-8) and
preconditioner. |
NonLinearConjugateGradientOptimizer(NonLinearConjugateGradientOptimizer.Formula updateFormula,
ConvergenceChecker<PointValuePair> checker,
double relativeTolerance,
double absoluteTolerance,
double initialBracketingRange) |
Constructor with default
preconditioner. |
NonLinearConjugateGradientOptimizer(NonLinearConjugateGradientOptimizer.Formula updateFormula,
ConvergenceChecker<PointValuePair> checker,
double relativeTolerance,
double absoluteTolerance,
double initialBracketingRange,
Preconditioner preconditioner) |
Copyright © 2016–2018 Hipparchus.org. All rights reserved.