Evolutionary Computing Flashcards
1
Q
GIve GA pseudocode
A
- Randomly generate an initial population of chromosomes
- Compute the fitness of every member of the current population
- Make an intermediate population by extracting members out of the current population by means of the selection operator
- Generate the new population by applying the genetic operators (crossover, mutation) to this intermediate population
- If there is a member of the current population that satisfies the problem requirements then stop, otherwise go to step (2)