public abstract class org.apache.commons.math3.genetics.ListPopulation implements org.apache.commons.math3.genetics.Population
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.apache.commons.math3.genetics.ListPopulation
  super_class: java.lang.Object
{
  private java.util.List<org.apache.commons.math3.genetics.Chromosome> chromosomes;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Lorg/apache/commons/math3/genetics/Chromosome;>;

  private int populationLimit;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.genetics.ListPopulation this
        start local 1 // int populationLimit
         0: .line 51
            aload 0 /* this */
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
            iload 1 /* populationLimit */
            invokespecial org.apache.commons.math3.genetics.ListPopulation.<init>:(Ljava/util/List;I)V
         1: .line 52
            return
        end local 1 // int populationLimit
        end local 0 // org.apache.commons.math3.genetics.ListPopulation this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lorg/apache/commons/math3/genetics/ListPopulation;
            0    2     1  populationLimit  I
    Exceptions:
      throws org.apache.commons.math3.exception.NotPositiveException
    MethodParameters:
                 Name  Flags
      populationLimit  final

  public void <init>(java.util.List<org.apache.commons.math3.genetics.Chromosome>, );
    descriptor: (Ljava/util/List;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // org.apache.commons.math3.genetics.ListPopulation this
        start local 1 // java.util.List chromosomes
        start local 2 // int populationLimit
         0: .line 65
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 68
            aload 1 /* chromosomes */
            ifnonnull 3
         2: .line 69
            new org.apache.commons.math3.exception.NullArgumentException
            dup
            invokespecial org.apache.commons.math3.exception.NullArgumentException.<init>:()V
            athrow
         3: .line 71
      StackMap locals: org.apache.commons.math3.genetics.ListPopulation java.util.List int
      StackMap stack:
            iload 2 /* populationLimit */
            ifgt 5
         4: .line 72
            new org.apache.commons.math3.exception.NotPositiveException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.POPULATION_LIMIT_NOT_POSITIVE:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
            iload 2 /* populationLimit */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokespecial org.apache.commons.math3.exception.NotPositiveException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;Ljava/lang/Number;)V
            athrow
         5: .line 74
      StackMap locals:
      StackMap stack:
            aload 1 /* chromosomes */
            invokeinterface java.util.List.size:()I
            iload 2 /* populationLimit */
            if_icmple 9
         6: .line 75
            new org.apache.commons.math3.exception.NumberIsTooLargeException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.LIST_OF_CHROMOSOMES_BIGGER_THAN_POPULATION_SIZE:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
         7: .line 76
            aload 1 /* chromosomes */
            invokeinterface java.util.List.size:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            iload 2 /* populationLimit */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            iconst_0
         8: .line 75
            invokespecial org.apache.commons.math3.exception.NumberIsTooLargeException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;Ljava/lang/Number;Ljava/lang/Number;Z)V
            athrow
         9: .line 78
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* populationLimit */
            putfield org.apache.commons.math3.genetics.ListPopulation.populationLimit:I
        10: .line 79
            aload 0 /* this */
            new java.util.ArrayList
            dup
            iload 2 /* populationLimit */
            invokespecial java.util.ArrayList.<init>:(I)V
            putfield org.apache.commons.math3.genetics.ListPopulation.chromosomes:Ljava/util/List;
        11: .line 80
            aload 0 /* this */
            getfield org.apache.commons.math3.genetics.ListPopulation.chromosomes:Ljava/util/List;
            aload 1 /* chromosomes */
            invokeinterface java.util.List.addAll:(Ljava/util/Collection;)Z
            pop
        12: .line 81
            return
        end local 2 // int populationLimit
        end local 1 // java.util.List chromosomes
        end local 0 // org.apache.commons.math3.genetics.ListPopulation this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   13     0             this  Lorg/apache/commons/math3/genetics/ListPopulation;
            0   13     1      chromosomes  Ljava/util/List<Lorg/apache/commons/math3/genetics/Chromosome;>;
            0   13     2  populationLimit  I
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NotPositiveException, org.apache.commons.math3.exception.NumberIsTooLargeException
    Signature: (Ljava/util/List<Lorg/apache/commons/math3/genetics/Chromosome;>;I)V
    MethodParameters:
                 Name  Flags
      chromosomes      final
      populationLimit  final

  public void setChromosomes(java.util.List<org.apache.commons.math3.genetics.Chromosome>);
    descriptor: (Ljava/util/List;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.genetics.ListPopulation this
        start local 1 // java.util.List chromosomes
         0: .line 98
            aload 1 /* chromosomes */
            ifnonnull 2
         1: .line 99
            new org.apache.commons.math3.exception.NullArgumentException
            dup
            invokespecial org.apache.commons.math3.exception.NullArgumentException.<init>:()V
            athrow
         2: .line 101
      StackMap locals:
      StackMap stack:
            aload 1 /* chromosomes */
            invokeinterface java.util.List.size:()I
            aload 0 /* this */
            getfield org.apache.commons.math3.genetics.ListPopulation.populationLimit:I
            if_icmple 6
         3: .line 102
            new org.apache.commons.math3.exception.NumberIsTooLargeException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.LIST_OF_CHROMOSOMES_BIGGER_THAN_POPULATION_SIZE:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
         4: .line 103
            aload 1 /* chromosomes */
            invokeinterface java.util.List.size:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aload 0 /* this */
            getfield org.apache.commons.math3.genetics.ListPopulation.populationLimit:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            iconst_0
         5: .line 102
            invokespecial org.apache.commons.math3.exception.NumberIsTooLargeException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;Ljava/lang/Number;Ljava/lang/Number;Z)V
            athrow
         6: .line 105
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.genetics.ListPopulation.chromosomes:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         7: .line 106
            aload 0 /* this */
            getfield org.apache.commons.math3.genetics.ListPopulation.chromosomes:Ljava/util/List;
            aload 1 /* chromosomes */
            invokeinterface java.util.List.addAll:(Ljava/util/Collection;)Z
            pop
         8: .line 107
            return
        end local 1 // java.util.List chromosomes
        end local 0 // org.apache.commons.math3.genetics.ListPopulation this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    9     0         this  Lorg/apache/commons/math3/genetics/ListPopulation;
            0    9     1  chromosomes  Ljava/util/List<Lorg/apache/commons/math3/genetics/Chromosome;>;
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NumberIsTooLargeException
    Signature: (Ljava/util/List<Lorg/apache/commons/math3/genetics/Chromosome;>;)V
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
             Name  Flags
      chromosomes  final

  public void addChromosomes(java.util.Collection<org.apache.commons.math3.genetics.Chromosome>);
    descriptor: (Ljava/util/Collection;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.genetics.ListPopulation this
        start local 1 // java.util.Collection chromosomeColl
         0: .line 117
            aload 0 /* this */
            getfield org.apache.commons.math3.genetics.ListPopulation.chromosomes:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            aload 1 /* chromosomeColl */
            invokeinterface java.util.Collection.size:()I
            iadd
            aload 0 /* this */
            getfield org.apache.commons.math3.genetics.ListPopulation.populationLimit:I
            if_icmple 4
         1: .line 118
            new org.apache.commons.math3.exception.NumberIsTooLargeException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.LIST_OF_CHROMOSOMES_BIGGER_THAN_POPULATION_SIZE:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
         2: .line 119
            aload 0 /* this */
            getfield org.apache.commons.math3.genetics.ListPopulation.chromosomes:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aload 0 /* this */
            getfield org.apache.commons.math3.genetics.ListPopulation.populationLimit:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            iconst_0
         3: .line 118
            invokespecial org.apache.commons.math3.exception.NumberIsTooLargeException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;Ljava/lang/Number;Ljava/lang/Number;Z)V
            athrow
         4: .line 121
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.genetics.ListPopulation.chromosomes:Ljava/util/List;
            aload 1 /* chromosomeColl */
            invokeinterface java.util.List.addAll:(Ljava/util/Collection;)Z
            pop
         5: .line 122
            return
        end local 1 // java.util.Collection chromosomeColl
        end local 0 // org.apache.commons.math3.genetics.ListPopulation this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    6     0            this  Lorg/apache/commons/math3/genetics/ListPopulation;
            0    6     1  chromosomeColl  Ljava/util/Collection<Lorg/apache/commons/math3/genetics/Chromosome;>;
    Exceptions:
      throws org.apache.commons.math3.exception.NumberIsTooLargeException
    Signature: (Ljava/util/Collection<Lorg/apache/commons/math3/genetics/Chromosome;>;)V
    MethodParameters:
                Name  Flags
      chromosomeColl  final

  public java.util.List<org.apache.commons.math3.genetics.Chromosome> getChromosomes();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.genetics.ListPopulation this
         0: .line 129
            aload 0 /* this */
            getfield org.apache.commons.math3.genetics.ListPopulation.chromosomes:Ljava/util/List;
            invokestatic java.util.Collections.unmodifiableList:(Ljava/util/List;)Ljava/util/List;
            areturn
        end local 0 // org.apache.commons.math3.genetics.ListPopulation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/genetics/ListPopulation;
    Signature: ()Ljava/util/List<Lorg/apache/commons/math3/genetics/Chromosome;>;

  protected java.util.List<org.apache.commons.math3.genetics.Chromosome> getChromosomeList();
    descriptor: ()Ljava/util/List;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.genetics.ListPopulation this
         0: .line 138
            aload 0 /* this */
            getfield org.apache.commons.math3.genetics.ListPopulation.chromosomes:Ljava/util/List;
            areturn
        end local 0 // org.apache.commons.math3.genetics.ListPopulation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/genetics/ListPopulation;
    Signature: ()Ljava/util/List<Lorg/apache/commons/math3/genetics/Chromosome;>;

  public void addChromosome(org.apache.commons.math3.genetics.Chromosome);
    descriptor: (Lorg/apache/commons/math3/genetics/Chromosome;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.genetics.ListPopulation this
        start local 1 // org.apache.commons.math3.genetics.Chromosome chromosome
         0: .line 149
            aload 0 /* this */
            getfield org.apache.commons.math3.genetics.ListPopulation.chromosomes:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            aload 0 /* this */
            getfield org.apache.commons.math3.genetics.ListPopulation.populationLimit:I
            if_icmplt 4
         1: .line 150
            new org.apache.commons.math3.exception.NumberIsTooLargeException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.LIST_OF_CHROMOSOMES_BIGGER_THAN_POPULATION_SIZE:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
         2: .line 151
            aload 0 /* this */
            getfield org.apache.commons.math3.genetics.ListPopulation.chromosomes:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aload 0 /* this */
            getfield org.apache.commons.math3.genetics.ListPopulation.populationLimit:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            iconst_0
         3: .line 150
            invokespecial org.apache.commons.math3.exception.NumberIsTooLargeException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;Ljava/lang/Number;Ljava/lang/Number;Z)V
            athrow
         4: .line 153
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.genetics.ListPopulation.chromosomes:Ljava/util/List;
            aload 1 /* chromosome */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         5: .line 154
            return
        end local 1 // org.apache.commons.math3.genetics.Chromosome chromosome
        end local 0 // org.apache.commons.math3.genetics.ListPopulation this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0        this  Lorg/apache/commons/math3/genetics/ListPopulation;
            0    6     1  chromosome  Lorg/apache/commons/math3/genetics/Chromosome;
    Exceptions:
      throws org.apache.commons.math3.exception.NumberIsTooLargeException
    MethodParameters:
            Name  Flags
      chromosome  final

  public org.apache.commons.math3.genetics.Chromosome getFittestChromosome();
    descriptor: ()Lorg/apache/commons/math3/genetics/Chromosome;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // org.apache.commons.math3.genetics.ListPopulation this
         0: .line 162
            aload 0 /* this */
            getfield org.apache.commons.math3.genetics.ListPopulation.chromosomes:Ljava/util/List;
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.apache.commons.math3.genetics.Chromosome
            astore 1 /* bestChromosome */
        start local 1 // org.apache.commons.math3.genetics.Chromosome bestChromosome
         1: .line 163
            aload 0 /* this */
            getfield org.apache.commons.math3.genetics.ListPopulation.chromosomes:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 5
      StackMap locals: org.apache.commons.math3.genetics.ListPopulation org.apache.commons.math3.genetics.Chromosome top java.util.Iterator
      StackMap stack:
         2: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.genetics.Chromosome
            astore 2 /* chromosome */
        start local 2 // org.apache.commons.math3.genetics.Chromosome chromosome
         3: .line 164
            aload 2 /* chromosome */
            aload 1 /* bestChromosome */
            invokevirtual org.apache.commons.math3.genetics.Chromosome.compareTo:(Lorg/apache/commons/math3/genetics/Chromosome;)I
            ifle 5
         4: .line 166
            aload 2 /* chromosome */
            astore 1 /* bestChromosome */
        end local 2 // org.apache.commons.math3.genetics.Chromosome chromosome
         5: .line 163
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         6: .line 169
            aload 1 /* bestChromosome */
            areturn
        end local 1 // org.apache.commons.math3.genetics.Chromosome bestChromosome
        end local 0 // org.apache.commons.math3.genetics.ListPopulation this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    7     0            this  Lorg/apache/commons/math3/genetics/ListPopulation;
            1    7     1  bestChromosome  Lorg/apache/commons/math3/genetics/Chromosome;
            3    5     2      chromosome  Lorg/apache/commons/math3/genetics/Chromosome;

  public int getPopulationLimit();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.genetics.ListPopulation this
         0: .line 177
            aload 0 /* this */
            getfield org.apache.commons.math3.genetics.ListPopulation.populationLimit:I
            ireturn
        end local 0 // org.apache.commons.math3.genetics.ListPopulation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/genetics/ListPopulation;

  public void setPopulationLimit(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.genetics.ListPopulation this
        start local 1 // int populationLimit
         0: .line 188
            iload 1 /* populationLimit */
            ifgt 2
         1: .line 189
            new org.apache.commons.math3.exception.NotPositiveException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.POPULATION_LIMIT_NOT_POSITIVE:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
            iload 1 /* populationLimit */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokespecial org.apache.commons.math3.exception.NotPositiveException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;Ljava/lang/Number;)V
            athrow
         2: .line 191
      StackMap locals:
      StackMap stack:
            iload 1 /* populationLimit */
            aload 0 /* this */
            getfield org.apache.commons.math3.genetics.ListPopulation.chromosomes:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            if_icmpge 4
         3: .line 192
            new org.apache.commons.math3.exception.NumberIsTooSmallException
            dup
            iload 1 /* populationLimit */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aload 0 /* this */
            getfield org.apache.commons.math3.genetics.ListPopulation.chromosomes:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            iconst_1
            invokespecial org.apache.commons.math3.exception.NumberIsTooSmallException.<init>:(Ljava/lang/Number;Ljava/lang/Number;Z)V
            athrow
         4: .line 194
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* populationLimit */
            putfield org.apache.commons.math3.genetics.ListPopulation.populationLimit:I
         5: .line 195
            return
        end local 1 // int populationLimit
        end local 0 // org.apache.commons.math3.genetics.ListPopulation this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    6     0             this  Lorg/apache/commons/math3/genetics/ListPopulation;
            0    6     1  populationLimit  I
    Exceptions:
      throws org.apache.commons.math3.exception.NotPositiveException, org.apache.commons.math3.exception.NumberIsTooSmallException
    MethodParameters:
                 Name  Flags
      populationLimit  final

  public int getPopulationSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.genetics.ListPopulation this
         0: .line 202
            aload 0 /* this */
            getfield org.apache.commons.math3.genetics.ListPopulation.chromosomes:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            ireturn
        end local 0 // org.apache.commons.math3.genetics.ListPopulation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/genetics/ListPopulation;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.genetics.ListPopulation this
         0: .line 210
            aload 0 /* this */
            getfield org.apache.commons.math3.genetics.ListPopulation.chromosomes:Ljava/util/List;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.apache.commons.math3.genetics.ListPopulation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/genetics/ListPopulation;

  public java.util.Iterator<org.apache.commons.math3.genetics.Chromosome> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.genetics.ListPopulation this
         0: .line 220
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.genetics.ListPopulation.getChromosomes:()Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            areturn
        end local 0 // org.apache.commons.math3.genetics.ListPopulation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/genetics/ListPopulation;
    Signature: ()Ljava/util/Iterator<Lorg/apache/commons/math3/genetics/Chromosome;>;
}
SourceFile: "ListPopulation.java"