Skip to content

Commit 6caa350

Browse files
authored
Merge pull request #2 from alexnodeland/feat/fill-spec-gaps
chore: fill spec gaps
2 parents d436a17 + 32ffc2e commit 6caa350

14 files changed

Lines changed: 4253 additions & 3 deletions

File tree

src/algorithms/eda/mod.rs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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+
12+
pub mod umda;
13+
14+
pub use umda::*;

0 commit comments

Comments
 (0)