Research Article
A Comparison of Selected Modifications of the Particle Swarm Optimization Algorithm
Algorithm 2
Algorithm SCE-PSO.
| Require , NC, N_comp, max_eval, fitness_lim | | (1) initialize population | | (2) while (number_eval ≤ max_eval) (fitness_best ≥ fitness_lim) do | | (3) sorted in increasing order according to the functional value | | (4) for to NC do | | (5) divided into NC complexes | | (6) run PSO | | (7) for to N_comp do | | (8) if then | | (9) | | (10) end if | | (11) if then | | (12) | | (13) end if | | (14) end for | | (15) end for | | (16) end while |
|