Genetic Search
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
Uses a population of candidate solutions; each one has a fitness value
Search based upon Genetics and dynamics of populations
Uses an encoding of problem parameters
Previous slide
Next slide
Back to first slide
View graphic version