What this program is trying to do (comments) ## GA Algorithm # GA Cycle : population (chromosome) -> reproduction (fitness) -> selection-> genetic operation (crossover, mutation) -- new generation --> ...... # Algorithm : begint initialize P(t)evaluate P(t)while (not termination-condition) dobegint select P(t) from P(t-1)alter P(t)evaluation P(t)endend # Example : f(x) = x * sin(10 * pi * x) = 1..