evolve 0.4.0

A generic, composable genetic algorithm framework for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Core types that make up the genetic algorithm.
//!
//! - [`Individual`](individual::Individual) — a genome paired with its fitness value
//! - [`Population`](population::Population) — a collection of individuals
//! - [`Offspring`](offspring::Offspring) — the result of applying a genetic operator
//! - [`State`](state::State) — the current generation and population
//! - [`Context`](context::Context) — shared resources passed to operators
pub mod context;
pub mod individual;
pub mod offspring;
pub mod population;
pub mod state;

#[cfg(test)]
mod test;