Genetic Search: create
GA
P,Q,R: populations of solutions from the problem domain;
initialize(P);
while not finish(P) do
begin
Q := select(P);
R := create(Q);
P := merge(P, Q, R);
end
end
Use crossover and mutation operators to modify solutions
Crossover
Mutation
Previous slide
Next slide
Back to first slide
View graphic version