Skip to main content

fugue_evo/algorithms/
mod.rs

1//! Evolutionary algorithms
2//!
3//! This module provides various evolutionary algorithm implementations.
4
5pub mod cmaes;
6pub mod eda;
7pub mod evolution_strategy;
8pub mod island;
9pub mod nsga2;
10pub mod simple_ga;
11pub mod steady_state;
12
13pub mod prelude {
14    pub use super::cmaes::*;
15    pub use super::eda::*;
16    pub use super::evolution_strategy::*;
17    pub use super::island::*;
18    pub use super::nsga2::*;
19    pub use super::simple_ga::*;
20    pub use super::steady_state::*;
21}