//! Mimimization functions.
//!
//! (c) 2023 Igor Lesik
//! MIT license
//!
//! Task of minimization: for given function _f_ that depends on one or more independent
//! variables, find the value of those variables where _f_ takes on a minimum value.
//!
pub use ;
pub use golden_section_search;
pub use brent_search;
pub use brent_df_search;
pub use amoeba;
extern crate assert_float_eq;