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