heuropt 0.4.0

A practical Rust toolkit for heuristic single-, multi-, and many-objective optimization.
Documentation
//! Concrete data types and the `Problem` trait that the rest of the crate is built on.

pub mod candidate;
pub mod evaluation;
pub mod objective;
pub mod partial_problem;
pub mod population;
pub mod problem;
pub mod result;
pub mod rng;

pub use candidate::*;
pub use evaluation::*;
pub use objective::*;
pub use partial_problem::*;
pub use population::*;
pub use problem::*;
pub use result::*;
pub use rng::*;