fugue_evo/algorithms/eda/mod.rs
1//! Estimation of Distribution Algorithms (EDAs)
2//!
3//! This module provides algorithms that use probabilistic models to guide search:
4//! - **UMDA**: Univariate Marginal Distribution Algorithm
5//!
6//! EDAs work by:
7//! 1. Selecting promising individuals from the population
8//! 2. Estimating a probability distribution from the selected individuals
9//! 3. Sampling new individuals from the learned distribution
10//! 4. Repeating until termination
11
12pub mod umda;
13
14pub use umda::*;