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;
8#[cfg(feature = "parallel")]
9pub mod island;
10pub mod nsga2;
11pub mod simple_ga;
12pub mod steady_state;
13
14pub mod prelude {
15    pub use super::cmaes::*;
16    pub use super::eda::*;
17    pub use super::evolution_strategy::*;
18    #[cfg(feature = "parallel")]
19    pub use super::island::*;
20    pub use super::nsga2::*;
21    pub use super::simple_ga::*;
22    pub use super::steady_state::*;
23}