argmin/solver/gaussnewton/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//! Newton Methods
9//!
10//! # References:
11//!
12//! [0] Jorge Nocedal and Stephen J. Wright (2006). Numerical Optimization.
13//! Springer. ISBN 0-387-30303-0.
14
15/// Gauss-Newton method with linesearch
16pub mod gaussnewton_linesearch;
17/// Gauss-Newton method
18pub mod gaussnewton_method;
19
20pub use self::gaussnewton_linesearch::*;
21pub use self::gaussnewton_method::*;