Skip to main content

rlevo_evolution/algorithms/
mod.rs

1//! Concrete evolutionary algorithms.
2//!
3//! # Classical families
4//!
5//! - [`ga`] / [`ga_binary`] — Genetic Algorithm (real- and binary-coded).
6//! - [`es_classical`] — (1+1), (1+λ), (μ,λ), (μ+λ) Evolution Strategies.
7//! - [`de`] — Differential Evolution (rand/best/current-to-best × bin/exp).
8//! - [`ep`] — Evolutionary Programming (Fogel-style).
9//! - [`gp_cgp`] — Cartesian Genetic Programming.
10//!
11//! # Swarm / nature-inspired metaheuristics
12//!
13//! - [`metaheuristic`] — PSO, `ACO_R`, ABC, GWO, WOA, CS, FA, BA, SSA.
14
15pub mod de;
16pub mod ep;
17pub mod es_classical;
18pub mod ga;
19pub mod ga_binary;
20pub mod gp_cgp;
21pub mod metaheuristic;