samyama-optimization 0.5.8

High-performance metaheuristic optimization algorithms (Jaya, Rao, TLBO, BMR, BWR, QOJaya, ITLBO) in Rust.
Documentation
pub mod jaya;
pub mod rao;
pub mod tlbo;
pub mod bmr;
pub mod bwr;
pub mod qojaya;
pub mod itlbo;
pub mod pso;
pub mod de;
pub mod gotlbo;
pub mod firefly;
pub mod cuckoo;
pub mod gwo;
pub mod ga;
pub mod sa;
pub mod bat;
pub mod abc;
pub mod gsa;
pub mod nsga2;
pub mod motlbo;
pub mod hs;
pub mod fpa;

pub use jaya::JayaSolver;
pub use rao::{RaoSolver, RaoVariant};
pub use tlbo::TLBOSolver;
pub use bmr::BMRSolver;
pub use bwr::BWRSolver;
pub use qojaya::QOJayaSolver;
pub use itlbo::ITLBOSolver;
pub use pso::PSOSolver;
pub use de::DESolver;
pub use gotlbo::GOTLBOSolver;
pub use firefly::FireflySolver;
pub use cuckoo::CuckooSolver;
pub use gwo::GWOSolver;
pub use ga::GASolver;
pub use sa::SASolver;
pub use bat::BatSolver;
pub use abc::ABCSolver;
pub use gsa::GSASolver;
pub use nsga2::NSGA2Solver;
pub use motlbo::MOTLBOSolver;
pub use hs::HSSolver;
pub use fpa::FPASolver;