//! Selection operators.
//!
//! - [`Tournament`] — tournament selection with replacement
//! - [`Elitism`] — preserve the best N individuals
//! - [`RouletteWheel`] — fitness-proportionate selection
//! - [`Rank`] — rank-based selection
//! - [`Sus`] — stochastic universal sampling
/// Elitism selection — preserve the best N individuals.
/// Rank-based selection.
/// Fitness-proportionate (roulette wheel) selection.
/// Stochastic universal sampling.
/// Tournament selection with replacement.
pub use Elitism;
pub use Rank;
pub use RouletteWheel;
pub use Sus;
pub use Tournament;