public class org.apache.commons.math3.genetics.RandomKeyMutation implements org.apache.commons.math3.genetics.MutationPolicy
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.genetics.RandomKeyMutation
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.genetics.RandomKeyMutation this
         0: .line 31
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.apache.commons.math3.genetics.RandomKeyMutation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/genetics/RandomKeyMutation;

  public org.apache.commons.math3.genetics.Chromosome mutate(org.apache.commons.math3.genetics.Chromosome);
    descriptor: (Lorg/apache/commons/math3/genetics/Chromosome;)Lorg/apache/commons/math3/genetics/Chromosome;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=6, args_size=2
        start local 0 // org.apache.commons.math3.genetics.RandomKeyMutation this
        start local 1 // org.apache.commons.math3.genetics.Chromosome original
         0: .line 39
            aload 1 /* original */
            instanceof org.apache.commons.math3.genetics.RandomKey
            ifne 4
         1: .line 40
            new org.apache.commons.math3.exception.MathIllegalArgumentException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.RANDOMKEY_MUTATION_WRONG_CLASS:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
         2: .line 41
            aload 1 /* original */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
         3: .line 40
            aastore
            invokespecial org.apache.commons.math3.exception.MathIllegalArgumentException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;[Ljava/lang/Object;)V
            athrow
         4: .line 44
      StackMap locals:
      StackMap stack:
            aload 1 /* original */
            checkcast org.apache.commons.math3.genetics.RandomKey
            astore 2 /* originalRk */
        start local 2 // org.apache.commons.math3.genetics.RandomKey originalRk
         5: .line 45
            aload 2 /* originalRk */
            invokevirtual org.apache.commons.math3.genetics.RandomKey.getRepresentation:()Ljava/util/List;
            astore 3 /* repr */
        start local 3 // java.util.List repr
         6: .line 46
            invokestatic org.apache.commons.math3.genetics.GeneticAlgorithm.getRandomGenerator:()Lorg/apache/commons/math3/random/RandomGenerator;
            aload 3 /* repr */
            invokeinterface java.util.List.size:()I
            invokeinterface org.apache.commons.math3.random.RandomGenerator.nextInt:(I)I
            istore 4 /* rInd */
        start local 4 // int rInd
         7: .line 48
            new java.util.ArrayList
            dup
            aload 3 /* repr */
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            astore 5 /* newRepr */
        start local 5 // java.util.List newRepr
         8: .line 49
            aload 5 /* newRepr */
            iload 4 /* rInd */
            invokestatic org.apache.commons.math3.genetics.GeneticAlgorithm.getRandomGenerator:()Lorg/apache/commons/math3/random/RandomGenerator;
            invokeinterface org.apache.commons.math3.random.RandomGenerator.nextDouble:()D
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            invokeinterface java.util.List.set:(ILjava/lang/Object;)Ljava/lang/Object;
            pop
         9: .line 51
            aload 2 /* originalRk */
            aload 5 /* newRepr */
            invokevirtual org.apache.commons.math3.genetics.RandomKey.newFixedLengthChromosome:(Ljava/util/List;)Lorg/apache/commons/math3/genetics/AbstractListChromosome;
            areturn
        end local 5 // java.util.List newRepr
        end local 4 // int rInd
        end local 3 // java.util.List repr
        end local 2 // org.apache.commons.math3.genetics.RandomKey originalRk
        end local 1 // org.apache.commons.math3.genetics.Chromosome original
        end local 0 // org.apache.commons.math3.genetics.RandomKeyMutation this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0        this  Lorg/apache/commons/math3/genetics/RandomKeyMutation;
            0   10     1    original  Lorg/apache/commons/math3/genetics/Chromosome;
            5   10     2  originalRk  Lorg/apache/commons/math3/genetics/RandomKey<*>;
            6   10     3        repr  Ljava/util/List<Ljava/lang/Double;>;
            7   10     4        rInd  I
            8   10     5     newRepr  Ljava/util/List<Ljava/lang/Double;>;
    Exceptions:
      throws org.apache.commons.math3.exception.MathIllegalArgumentException
    MethodParameters:
          Name  Flags
      original  final
}
SourceFile: "RandomKeyMutation.java"