heuropt 0.11.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
12
13
14
15
//! Pareto utilities: dominance, fronts, sorting, crowding, and an archive.

pub mod archive;
pub mod crowding;
pub mod dominance;
pub mod front;
pub mod reference_points;
pub mod sort;

pub use archive::*;
pub use crowding::*;
pub use dominance::*;
pub use front::*;
pub use reference_points::*;
pub use sort::*;