Ejemplo n.º 1
0
 private void UpdateBestIndAndStats()
 {
     bestInd = population.OrderBy(x => x.Fitness).FirstOrDefault();
     program.PrintBestIndividual(bestInd, generationNb);
     bestFitness = bestInd.Fitness;
 }