pub fn generational<B: Backend>(
_current_pop: Tensor<B, 2>,
_current_fitness: &[f32],
offspring_pop: Tensor<B, 2>,
offspring_fitness: Vec<f32>,
) -> (Tensor<B, 2>, Vec<f32>)Expand description
Replace the entire current generation with offspring (no elitism).