1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
//! The `selection` module provides implementations of the
//! `operator::SelectionOp` genetic operator.
//!
//! The provided `operator::SelectionOp`s are organized in sub-modules
//! named after the utilized selection method:
//! * `truncation`
//! * `ranking`
//! * `proportionate`
//! * `tournament`

pub mod proportionate;

pub mod ranking;

pub mod tournament;

pub mod truncation;