1//! ```optimax``` is a collection of numerical methods to find minima/maxima of a function. 2 3pub mod gradient_descent; 4pub mod stochastic_annealing; 5pub mod bfgs;