Module argmin::solver::conjugategradient::beta
source · Expand description
§Beta update methods for NonlinearConjugateGradient
These methods define the update procedure for
NonlinearConjugateGradient
.
They are based on the NLCGBetaUpdate
trait which enables users to implement their own beta
update methods.
§Reference
[0] Jorge Nocedal and Stephen J. Wright (2006). Numerical Optimization. Springer. ISBN 0-387-30303-0.
Structs§
- Fletcher and Reeves (FR) method
- Hestenes and Stiefel (HS) method
- Polak and Ribiere (PR) method
- Polak and Ribiere Plus (PR+) method
Traits§
- Interface for beta update methods (
NonlinearConjugateGradient
)