argmin/solver/quasinewton/
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//! Quasi-Newton methods
9//!
10//! [BFGS](BFGS/struct.BFGS.html)
11//!
12//! # References:
13//!
14//! [0] Jorge Nocedal and Stephen J. Wright (2006). Numerical Optimization.
15//! Springer. ISBN 0-387-30303-0.
16
17pub mod bfgs;
18pub mod dfp;
19pub mod lbfgs;
20pub mod sr1;
21pub mod sr1_trustregion;
22
23pub use self::bfgs::*;
24pub use self::dfp::*;
25pub use self::lbfgs::*;
26pub use self::sr1::*;
27pub use self::sr1_trustregion::*;