1 2 3 4 5 6 7 8 9 10 11
//! Fitness evaluation and benchmarks //! //! This module provides the fitness abstraction and benchmark functions. pub mod benchmarks; pub mod traits; pub mod prelude { pub use super::benchmarks::*; pub use super::traits::*; }