argmin/solver/
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
8pub mod brent;
9pub mod conjugategradient;
10pub mod gaussnewton;
11pub mod goldensectionsearch;
12pub mod gradientdescent;
13pub mod landweber;
14pub mod linesearch;
15pub mod neldermead;
16pub mod newton;
17pub mod particleswarm;
18pub mod quasinewton;
19pub mod simulatedannealing;
20pub mod trustregion;