Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions src/algorithms/eda/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
//! Estimation of Distribution Algorithms (EDAs)
//!
//! This module provides algorithms that use probabilistic models to guide search:
//! - **UMDA**: Univariate Marginal Distribution Algorithm
//!
//! EDAs work by:
//! 1. Selecting promising individuals from the population
//! 2. Estimating a probability distribution from the selected individuals
//! 3. Sampling new individuals from the learned distribution
//! 4. Repeating until termination

pub mod umda;

pub use umda::*;
Loading