argmin/solver/gradientdescent/
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//! Gradient descent methods
9//!
10//! [Steepest Descent](steepestdescent/struct.SteepestDescent.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 steepestdescent;
18
19pub use self::steepestdescent::*;