Uses of Enum
org.hipparchus.optim.nonlinear.scalar.gradient.NonLinearConjugateGradientOptimizer.Formula
Package
Description
This package provides optimization algorithms that require derivatives.
-
Uses of NonLinearConjugateGradientOptimizer.Formula in org.hipparchus.optim.nonlinear.scalar.gradient
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.NonLinearConjugateGradientOptimizer.Formula.values()
Returns an array containing the constants of this enum type, in the order they are declared.ModifierConstructorDescriptionNonLinearConjugateGradientOptimizer
(NonLinearConjugateGradientOptimizer.Formula updateFormula, ConvergenceChecker<PointValuePair> checker) Constructor with default tolerances for the line search (1e-8) andpreconditioner
.NonLinearConjugateGradientOptimizer
(NonLinearConjugateGradientOptimizer.Formula updateFormula, ConvergenceChecker<PointValuePair> checker, double relativeTolerance, double absoluteTolerance, double initialBracketingRange) Constructor with defaultpreconditioner
.NonLinearConjugateGradientOptimizer
(NonLinearConjugateGradientOptimizer.Formula updateFormula, ConvergenceChecker<PointValuePair> checker, double relativeTolerance, double absoluteTolerance, double initialBracketingRange, Preconditioner preconditioner) Simple constructor.