Research Article

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

Pseudocode 8

Pseudocode of the mut function.
population  mut(chrom, )
Input: chrom indicates a chromosome in the population;
        indicates the probability of mutation.
Output: chrom2 indicates a chromosome after mutatation.
 chrom2 chrom;
for  the th gene chrom
   generate a random;
  if   <
   gene    gene;
   chrom2( ) gene;
  end if
end for
Return  chrom2;