1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//! Optimization
//!
//! This module provides functions for minimizing objective functions. It includes solvers
//! for nonlinear problems, nonlinear least-squares.
mod jacobian;
mod hessian;
mod gaussnewton;
mod gradient;
mod newton;
mod levenbergmarquardt;
mod conjugategradient;
mod optimresult;
mod nonlinearcg;

/// Gradient mehtod
pub use self::gradient::Gradient;
/// Gauss-Newton method
pub use self::gaussnewton::GaussNewton;
/// Newton's method
pub use self::newton::Newton;
/// Levenberg Marquardt method
pub use self::levenbergmarquardt::LevenbergMarquardt;
/// Conjugate Gradient method
pub use self::conjugategradient::ConjugateGradient;

//pub use self::nonlinearcg::NonlinearConjugateGradient;

pub use self::jacobian::Jacobian;
pub use self::hessian::Hessian;
pub use self::optimresult::OptimResult;