argmin/solver/conjugategradient/
mod.rs

1// Copyright 2018-2020 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 Gradients](cg/struct.ConjugateGradient.html)
11//! * [Nonlinear Conjugate Gradients](nonlinear_cg/struct.NonlinearConjugateGradient.html)
12//!
13//! # References:
14//!
15//! [0] Jorge Nocedal and Stephen J. Wright (2006). Numerical Optimization.
16//! Springer. ISBN 0-387-30303-0.
17
18/// Conjugate gradient method
19pub mod cg;
20
21/// Nonlinear conjugate gradient method
22pub mod nonlinear_cg;
23
24/// Beta update methods for nonlinear CG
25pub mod beta;
26
27pub use self::beta::*;
28pub use self::cg::*;
29pub use self::nonlinear_cg::*;