Research Article

Multiobjective Particle Swarm Optimization Based on PAM and Uniform Design

Algorithm 2

Pseudocode of selecting elitist.
population paretocreate (pop)
Input: pop indicates the population.
Output: pareto indicates the non-dominated solutions.
 pareto pop;
for chr1 pop;
  for chr2 pareto chr2 ≠ chr1;
   if chr1 dominate chr2
    pareto pareto − chr2;
   end if
  end for
end for
return pareto;