genevo 0.7.1

genevo provides building blocks to run simulations of optimization and search problems using genetic algorithms (GA). Execute genetic algorithm (GA) simulations in a customizable and extensible way.
Documentation
1
2
3
4
5
6
7
8
9
10
//! The `recombination` module provides default implementations of the
//! `operator::CrossoverOp`. The provided crossover operators are organized
//! in the categories:
//! * `discrete` - crossover schemes working on discrete values of a bitset or
//!                or list of values.
//! * `order` - crossover schemes for permutation encoded values.

pub mod discrete;

pub mod order;