pub fn roulette_select<'a>(
population: &'a [Chromosome],
rng: &mut impl Rng,
) -> &'a ChromosomeExpand description
Roulette wheel selection (fitness proportionate selection).
ยงPanics
Panics if population is empty (see tournament_select_with_size).