Evolutionary Computing Flashcards

1
Q

GIve GA pseudocode

A
  1. Randomly generate an initial population of chromosomes
  2. Compute the fitness of every member of the current population
  3. Make an intermediate population by extracting members out of the current population by means of the selection operator
  4. Generate the new population by applying the genetic operators (crossover, mutation) to this intermediate population
  5. If there is a member of the current population that satisfies the problem requirements then stop, otherwise go to step (2)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly