Enum rsgenetic::sim::seq::SelectionType
[−]
[src]
pub enum SelectionType {
Maximize {
count: u32,
},
Tournament {
count: u32,
size: u32,
},
}The type of parent selection.
Variants
Maximize | Select only the Fields
| ||||
Tournament | Perform tournament selection with tournament size Fields
|