petri 0.0.4

Evolutionary computing toolkit
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Selection operators

mod best;
pub use self::best::Best;

mod worst;
pub use self::worst::Worst;

mod random;
pub use self::random::Random;

mod roulette;
// pub use self::roulette::Roulette;

mod tournament;
pub use self::tournament::Tournament;