Research Article

Investigation on Evolutionary Computation Techniques of a Nonlinear System

Pseudocode 4

Pseudocode of GA.
t = 0;
initialize(p(t=0));
evaluatae(P(t=0));
While is NotTerminated() do
𝑃 𝑐 (t) = reproduction( 𝑃 𝑝 );
mutace( 𝑃 𝑐 (t));
evaluate( 𝑃 𝑐 (t));
P(t+1) = buildNextGenerationForm(Pc(t),
P(t));
t=t+1;
end