|
Algorithm 3: Evolution of FAM Network
|
Pop_best_fit = DE(FNT)
Initialize β = 1.0 and CR = 0.7
Set Generation Count t = 0(max = G)
Create the initial population C(t) = NP
While (stopping criteria not true)
For each target xi((G)ϵC(G)
Create the Mutant Vector Vi(G)
Create the test vector Ui(G)
For all i
Evaluate F(xi(G)) and F(Ui(G))
If (f(xi(t) ≥ f(Ui(t))
xi(t + 1) = x0(t)
else xi(t + 1) = U0(t)
Return population with best fitness
End
|