eviolite 0.1.1

Toolkit for working with evolutionary algorithms
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Convenience re-export of commonly used items

pub use crate::{
    alg, fitness,
    fitness::MultiObjective,
    hof,
    repro_rng::{random, thread_rng},
    select, stats, Cached, Evolution, Solution,
};

#[cfg(feature = "ndarray")]
pub use crate::{crossover, mutation};

pub use rand::Rng;