1 2 3 4 5 6 7 8 9 10 11 12 13
//! Root finding trait definitions. pub mod anderson; mod broyden; mod levenberg_marquardt; mod newton; mod powell_hybrid; pub use anderson::{AndersonAlgorithms, AndersonOptions}; pub use broyden::Broyden1Algorithms; pub use levenberg_marquardt::LevenbergMarquardtAlgorithms; pub use newton::NewtonSystemAlgorithms; pub use powell_hybrid::PowellHybridAlgorithms;