1

For example population size is 300, crossover probability of 0.75 results in 224 chromosome's selection as parents and mutation probability of 0.005 results in 2 chromosomes to mutate. With elitism size 1, we will have 227 offspring solutions. How rest of the 73 chromosomes will be generated to complete population size of 300?

Sam
  • 95
  • 10

1 Answers1

1

The common approach is to copy 73 chromosomes of the old population to complete the new one.

You could:

The effectiveness of these strategies (meta-heuristics) greatly depends on the specific problem and you have to experiment.

manlio
  • 18,345
  • 14
  • 76
  • 126