heuropt 0.6.0

A practical Rust toolkit for heuristic single-, multi-, and many-objective optimization.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! The small set of traits that user code and built-in algorithms implement.

pub mod initializer;
pub mod optimizer;
pub mod repair;
pub mod variation;

pub use initializer::*;
pub use optimizer::*;
pub use repair::*;
pub use variation::*;