argmin/solver/conjugategradient/
mod.rs

1// Copyright 2018-2024 argmin developers
2//
3// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
5// http://opensource.org/licenses/MIT>, at your option. This file may not be
6// copied, modified, or distributed except according to those terms.
7
8//! # Conjugate Gradient methods
9//!
10//! * [Conjugate Gradient](`ConjugateGradient`)
11//! * [Nonlinear Conjugate Gradient](`NonlinearConjugateGradient`)
12//!
13//! ## Reference
14//!
15//! Jorge Nocedal and Stephen J. Wright (2006). Numerical Optimization.
16//! Springer. ISBN 0-387-30303-0.
17
18mod cg;
19mod nonlinear_cg;
20
21pub mod beta;
22
23pub use self::cg::ConjugateGradient;
24pub use self::nonlinear_cg::NonlinearConjugateGradient;