Is there a difference between Genetic algorithms and evolutionary algorithms ? I have read multiple papers, talking about genetic or evolutionary algorithms, and while very similar, I think they may not be the same thing.
|
feedback
|
|
A genetic algorithm is a class of evolutionary algorithm. Although genetic algorithms are the most frequently encountered type of evolutionary algorithm, there are other types, such as Evolution Strategy. So, evolutionary algorithms encompass genetic algorithms, and more. | ||||
|
feedback
|
|
Genetic algorithms use crossover (hence the 'gene' in their name) and mutation to search the space of possible solutions. Evolutionary programming uses primarily mutation. As posted already, both are types of evolutionary algorithms. | |||
|
feedback
|