evolutionary 0.1.1

A fully extensible Rust framework for using paralyzed genetic algorithms to solve problems.
Documentation
1
2
3
4
5
6
7
8
9
use crate::*;

mod cycle_crossover;
mod ordered_crossover;
mod partially_mapped_crossover;

pub use cycle_crossover::*;
pub use ordered_crossover::*;
pub use partially_mapped_crossover::*;