Research Article

Attribute Index and Uniform Design Based Multiobjective Association Rule Mining with Evolutionary Algorithm

Pseudocode 9

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;