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