Research Article

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

Pseudocode 7

Pseudocode of the mutate operator.
population  mutate(pop, )
Input: pop indicates the population; indicates
       the probability of mutation.
Output: offspring indicates the offspring after mutatation.
 offspring ;
for   chrom pop
   generate a random;
  if   <
   chrom2     mut(chrom, );
   while  not isvalid(chrom2)
    chrom2     mut(chrom, );
   end while
   offspring offspring chrom2;
  end if
end for
return  offspring;