public class org.apache.commons.math3.distribution.EnumeratedRealDistribution extends org.apache.commons.math3.distribution.AbstractRealDistribution
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.distribution.EnumeratedRealDistribution
  super_class: org.apache.commons.math3.distribution.AbstractRealDistribution
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 20130308

  protected final org.apache.commons.math3.distribution.EnumeratedDistribution<java.lang.Double> innerDistribution;
    descriptor: Lorg/apache/commons/math3/distribution/EnumeratedDistribution;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Signature: Lorg/apache/commons/math3/distribution/EnumeratedDistribution<Ljava/lang/Double;>;

  public void <init>(double[], double[]);
    descriptor: ([D[D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
        start local 1 // double[] singletons
        start local 2 // double[] probabilities
         0: .line 79
            aload 0 /* this */
            new org.apache.commons.math3.random.Well19937c
            dup
            invokespecial org.apache.commons.math3.random.Well19937c.<init>:()V
            aload 1 /* singletons */
            aload 2 /* probabilities */
            invokespecial org.apache.commons.math3.distribution.EnumeratedRealDistribution.<init>:(Lorg/apache/commons/math3/random/RandomGenerator;[D[D)V
         1: .line 80
            return
        end local 2 // double[] probabilities
        end local 1 // double[] singletons
        end local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lorg/apache/commons/math3/distribution/EnumeratedRealDistribution;
            0    2     1     singletons  [D
            0    2     2  probabilities  [D
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.NotPositiveException, org.apache.commons.math3.exception.MathArithmeticException, org.apache.commons.math3.exception.NotFiniteNumberException, org.apache.commons.math3.exception.NotANumberException
    MethodParameters:
               Name  Flags
      singletons     final
      probabilities  final

  public void <init>(org.apache.commons.math3.random.RandomGenerator, double[], double[]);
    descriptor: (Lorg/apache/commons/math3/random/RandomGenerator;[D[D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
        start local 1 // org.apache.commons.math3.random.RandomGenerator rng
        start local 2 // double[] singletons
        start local 3 // double[] probabilities
         0: .line 100
            aload 0 /* this */
            aload 1 /* rng */
            invokespecial org.apache.commons.math3.distribution.AbstractRealDistribution.<init>:(Lorg/apache/commons/math3/random/RandomGenerator;)V
         1: .line 102
            aload 0 /* this */
            new org.apache.commons.math3.distribution.EnumeratedDistribution
            dup
         2: .line 103
            aload 1 /* rng */
            aload 2 /* singletons */
            aload 3 /* probabilities */
            invokestatic org.apache.commons.math3.distribution.EnumeratedRealDistribution.createDistribution:([D[D)Ljava/util/List;
            invokespecial org.apache.commons.math3.distribution.EnumeratedDistribution.<init>:(Lorg/apache/commons/math3/random/RandomGenerator;Ljava/util/List;)V
         3: .line 102
            putfield org.apache.commons.math3.distribution.EnumeratedRealDistribution.innerDistribution:Lorg/apache/commons/math3/distribution/EnumeratedDistribution;
         4: .line 104
            return
        end local 3 // double[] probabilities
        end local 2 // double[] singletons
        end local 1 // org.apache.commons.math3.random.RandomGenerator rng
        end local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lorg/apache/commons/math3/distribution/EnumeratedRealDistribution;
            0    5     1            rng  Lorg/apache/commons/math3/random/RandomGenerator;
            0    5     2     singletons  [D
            0    5     3  probabilities  [D
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.NotPositiveException, org.apache.commons.math3.exception.MathArithmeticException, org.apache.commons.math3.exception.NotFiniteNumberException, org.apache.commons.math3.exception.NotANumberException
    MethodParameters:
               Name  Flags
      rng            final
      singletons     final
      probabilities  final

  public void <init>(org.apache.commons.math3.random.RandomGenerator, double[]);
    descriptor: (Lorg/apache/commons/math3/random/RandomGenerator;[D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=12, args_size=3
        start local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
        start local 1 // org.apache.commons.math3.random.RandomGenerator rng
        start local 2 // double[] data
         0: .line 115
            aload 0 /* this */
            aload 1 /* rng */
            invokespecial org.apache.commons.math3.distribution.AbstractRealDistribution.<init>:(Lorg/apache/commons/math3/random/RandomGenerator;)V
         1: .line 116
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            astore 3 /* dataMap */
        start local 3 // java.util.Map dataMap
         2: .line 117
            aload 2 /* data */
            dup
            astore 8
            arraylength
            istore 7
            iconst_0
            istore 6
            goto 9
      StackMap locals: org.apache.commons.math3.distribution.EnumeratedRealDistribution org.apache.commons.math3.random.RandomGenerator double[] java.util.Map top top int int double[]
      StackMap stack:
         3: aload 8
            iload 6
            daload
            dstore 4 /* value */
        start local 4 // double value
         4: .line 118
            aload 3 /* dataMap */
            dload 4 /* value */
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Integer
            astore 9 /* count */
        start local 9 // java.lang.Integer count
         5: .line 119
            aload 9 /* count */
            ifnonnull 7
         6: .line 120
            iconst_0
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            astore 9 /* count */
         7: .line 122
      StackMap locals: org.apache.commons.math3.distribution.EnumeratedRealDistribution org.apache.commons.math3.random.RandomGenerator double[] java.util.Map double int int double[] java.lang.Integer
      StackMap stack:
            aload 3 /* dataMap */
            dload 4 /* value */
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            aload 9 /* count */
            invokevirtual java.lang.Integer.intValue:()I
            iconst_1
            iadd
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            dup
            astore 9 /* count */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 9 // java.lang.Integer count
        end local 4 // double value
         8: .line 117
            iinc 6 1
      StackMap locals: org.apache.commons.math3.distribution.EnumeratedRealDistribution org.apache.commons.math3.random.RandomGenerator double[] java.util.Map top top int int double[]
      StackMap stack:
         9: iload 6
            iload 7
            if_icmplt 3
        10: .line 124
            aload 3 /* dataMap */
            invokeinterface java.util.Map.size:()I
            istore 4 /* massPoints */
        start local 4 // int massPoints
        11: .line 125
            aload 2 /* data */
            arraylength
            i2d
            dstore 5 /* denom */
        start local 5 // double denom
        12: .line 126
            iload 4 /* massPoints */
            newarray 7
            astore 7 /* values */
        start local 7 // double[] values
        13: .line 127
            iload 4 /* massPoints */
            newarray 7
            astore 8 /* probabilities */
        start local 8 // double[] probabilities
        14: .line 128
            iconst_0
            istore 9 /* index */
        start local 9 // int index
        15: .line 129
            aload 3 /* dataMap */
            invokeinterface java.util.Map.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 11
            goto 20
      StackMap locals: org.apache.commons.math3.distribution.EnumeratedRealDistribution org.apache.commons.math3.random.RandomGenerator double[] java.util.Map int double double[] double[] int top java.util.Iterator
      StackMap stack:
        16: aload 11
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 10 /* entry */
        start local 10 // java.util.Map$Entry entry
        17: .line 130
            aload 7 /* values */
            iload 9 /* index */
            aload 10 /* entry */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            checkcast java.lang.Double
            invokevirtual java.lang.Double.doubleValue:()D
            dastore
        18: .line 131
            aload 8 /* probabilities */
            iload 9 /* index */
            aload 10 /* entry */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            i2d
            dload 5 /* denom */
            ddiv
            dastore
        19: .line 132
            iinc 9 /* index */ 1
        end local 10 // java.util.Map$Entry entry
        20: .line 129
      StackMap locals:
      StackMap stack:
            aload 11
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 16
        21: .line 134
            aload 0 /* this */
            new org.apache.commons.math3.distribution.EnumeratedDistribution
            dup
            aload 1 /* rng */
            aload 7 /* values */
            aload 8 /* probabilities */
            invokestatic org.apache.commons.math3.distribution.EnumeratedRealDistribution.createDistribution:([D[D)Ljava/util/List;
            invokespecial org.apache.commons.math3.distribution.EnumeratedDistribution.<init>:(Lorg/apache/commons/math3/random/RandomGenerator;Ljava/util/List;)V
            putfield org.apache.commons.math3.distribution.EnumeratedRealDistribution.innerDistribution:Lorg/apache/commons/math3/distribution/EnumeratedDistribution;
        22: .line 135
            return
        end local 9 // int index
        end local 8 // double[] probabilities
        end local 7 // double[] values
        end local 5 // double denom
        end local 4 // int massPoints
        end local 3 // java.util.Map dataMap
        end local 2 // double[] data
        end local 1 // org.apache.commons.math3.random.RandomGenerator rng
        end local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   23     0           this  Lorg/apache/commons/math3/distribution/EnumeratedRealDistribution;
            0   23     1            rng  Lorg/apache/commons/math3/random/RandomGenerator;
            0   23     2           data  [D
            2   23     3        dataMap  Ljava/util/Map<Ljava/lang/Double;Ljava/lang/Integer;>;
            4    8     4          value  D
            5    8     9          count  Ljava/lang/Integer;
           11   23     4     massPoints  I
           12   23     5          denom  D
           13   23     7         values  [D
           14   23     8  probabilities  [D
           15   23     9          index  I
           17   20    10          entry  Ljava/util/Map$Entry<Ljava/lang/Double;Ljava/lang/Integer;>;
    MethodParameters:
      Name  Flags
      rng   final
      data  final

  public void <init>(double[]);
    descriptor: ([D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
        start local 1 // double[] data
         0: .line 146
            aload 0 /* this */
            new org.apache.commons.math3.random.Well19937c
            dup
            invokespecial org.apache.commons.math3.random.Well19937c.<init>:()V
            aload 1 /* data */
            invokespecial org.apache.commons.math3.distribution.EnumeratedRealDistribution.<init>:(Lorg/apache/commons/math3/random/RandomGenerator;[D)V
         1: .line 147
            return
        end local 1 // double[] data
        end local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/math3/distribution/EnumeratedRealDistribution;
            0    2     1  data  [D
    MethodParameters:
      Name  Flags
      data  final

  private static java.util.List<org.apache.commons.math3.util.Pair<java.lang.Double, java.lang.Double>> createDistribution(double[], double[]);
    descriptor: ([D[D)Ljava/util/List;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // double[] singletons
        start local 1 // double[] probabilities
         0: .line 156
            aload 0 /* singletons */
            arraylength
            aload 1 /* probabilities */
            arraylength
            if_icmpeq 2
         1: .line 157
            new org.apache.commons.math3.exception.DimensionMismatchException
            dup
            aload 1 /* probabilities */
            arraylength
            aload 0 /* singletons */
            arraylength
            invokespecial org.apache.commons.math3.exception.DimensionMismatchException.<init>:(II)V
            athrow
         2: .line 160
      StackMap locals:
      StackMap stack:
            new java.util.ArrayList
            dup
            aload 0 /* singletons */
            arraylength
            invokespecial java.util.ArrayList.<init>:(I)V
            astore 2 /* samples */
        start local 2 // java.util.List samples
         3: .line 162
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         4: goto 7
         5: .line 163
      StackMap locals: java.util.List int
      StackMap stack:
            aload 2 /* samples */
            new org.apache.commons.math3.util.Pair
            dup
            aload 0 /* singletons */
            iload 3 /* i */
            daload
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            aload 1 /* probabilities */
            iload 3 /* i */
            daload
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            invokespecial org.apache.commons.math3.util.Pair.<init>:(Ljava/lang/Object;Ljava/lang/Object;)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         6: .line 162
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 3 /* i */
            aload 0 /* singletons */
            arraylength
            if_icmplt 5
        end local 3 // int i
         8: .line 165
            aload 2 /* samples */
            areturn
        end local 2 // java.util.List samples
        end local 1 // double[] probabilities
        end local 0 // double[] singletons
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    9     0     singletons  [D
            0    9     1  probabilities  [D
            3    9     2        samples  Ljava/util/List<Lorg/apache/commons/math3/util/Pair<Ljava/lang/Double;Ljava/lang/Double;>;>;
            4    8     3              i  I
    Signature: ([D[D)Ljava/util/List<Lorg/apache/commons/math3/util/Pair<Ljava/lang/Double;Ljava/lang/Double;>;>;
    MethodParameters:
               Name  Flags
      singletons     
      probabilities  

  public double probability(double);
    descriptor: (D)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
        start local 1 // double x
         0: .line 174
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.EnumeratedRealDistribution.innerDistribution:Lorg/apache/commons/math3/distribution/EnumeratedDistribution;
            dload 1 /* x */
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            invokevirtual org.apache.commons.math3.distribution.EnumeratedDistribution.probability:(Ljava/lang/Object;)D
            dreturn
        end local 1 // double x
        end local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/EnumeratedRealDistribution;
            0    1     1     x  D
    MethodParameters:
      Name  Flags
      x     final

  public double density(double);
    descriptor: (D)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
        start local 1 // double x
         0: .line 187
            aload 0 /* this */
            dload 1 /* x */
            invokevirtual org.apache.commons.math3.distribution.EnumeratedRealDistribution.probability:(D)D
            dreturn
        end local 1 // double x
        end local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/EnumeratedRealDistribution;
            0    1     1     x  D
    MethodParameters:
      Name  Flags
      x     final

  public double cumulativeProbability(double);
    descriptor: (D)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
        start local 1 // double x
         0: .line 194
            dconst_0
            dstore 3 /* probability */
        start local 3 // double probability
         1: .line 196
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.EnumeratedRealDistribution.innerDistribution:Lorg/apache/commons/math3/distribution/EnumeratedDistribution;
            invokevirtual org.apache.commons.math3.distribution.EnumeratedDistribution.getPmf:()Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 6
            goto 5
      StackMap locals: org.apache.commons.math3.distribution.EnumeratedRealDistribution double double top java.util.Iterator
      StackMap stack:
         2: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.util.Pair
            astore 5 /* sample */
        start local 5 // org.apache.commons.math3.util.Pair sample
         3: .line 197
            aload 5 /* sample */
            invokevirtual org.apache.commons.math3.util.Pair.getKey:()Ljava/lang/Object;
            checkcast java.lang.Double
            invokevirtual java.lang.Double.doubleValue:()D
            dload 1 /* x */
            dcmpg
            ifgt 5
         4: .line 198
            dload 3 /* probability */
            aload 5 /* sample */
            invokevirtual org.apache.commons.math3.util.Pair.getValue:()Ljava/lang/Object;
            checkcast java.lang.Double
            invokevirtual java.lang.Double.doubleValue:()D
            dadd
            dstore 3 /* probability */
        end local 5 // org.apache.commons.math3.util.Pair sample
         5: .line 196
      StackMap locals:
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         6: .line 202
            dload 3 /* probability */
            dreturn
        end local 3 // double probability
        end local 1 // double x
        end local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    7     0         this  Lorg/apache/commons/math3/distribution/EnumeratedRealDistribution;
            0    7     1            x  D
            1    7     3  probability  D
            3    5     5       sample  Lorg/apache/commons/math3/util/Pair<Ljava/lang/Double;Ljava/lang/Double;>;
    MethodParameters:
      Name  Flags
      x     final

  public double inverseCumulativeProbability(double);
    descriptor: (D)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=9, args_size=2
        start local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
        start local 1 // double p
         0: .line 210
            dload 1 /* p */
            dconst_0
            dcmpg
            iflt 1
            dload 1 /* p */
            dconst_1
            dcmpl
            ifle 2
         1: .line 211
      StackMap locals:
      StackMap stack:
            new org.apache.commons.math3.exception.OutOfRangeException
            dup
            dload 1 /* p */
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            iconst_0
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            iconst_1
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokespecial org.apache.commons.math3.exception.OutOfRangeException.<init>:(Ljava/lang/Number;Ljava/lang/Number;Ljava/lang/Number;)V
            athrow
         2: .line 214
      StackMap locals:
      StackMap stack:
            dconst_0
            dstore 3 /* probability */
        start local 3 // double probability
         3: .line 215
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.distribution.EnumeratedRealDistribution.getSupportLowerBound:()D
            dstore 5 /* x */
        start local 5 // double x
         4: .line 216
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.EnumeratedRealDistribution.innerDistribution:Lorg/apache/commons/math3/distribution/EnumeratedDistribution;
            invokevirtual org.apache.commons.math3.distribution.EnumeratedDistribution.getPmf:()Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 8
            goto 12
      StackMap locals: org.apache.commons.math3.distribution.EnumeratedRealDistribution double double double top java.util.Iterator
      StackMap stack:
         5: aload 8
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.util.Pair
            astore 7 /* sample */
        start local 7 // org.apache.commons.math3.util.Pair sample
         6: .line 217
            aload 7 /* sample */
            invokevirtual org.apache.commons.math3.util.Pair.getValue:()Ljava/lang/Object;
            checkcast java.lang.Double
            invokevirtual java.lang.Double.doubleValue:()D
            dconst_0
            dcmpl
            ifne 8
         7: .line 218
            goto 12
         8: .line 221
      StackMap locals: org.apache.commons.math3.distribution.EnumeratedRealDistribution double double double org.apache.commons.math3.util.Pair java.util.Iterator
      StackMap stack:
            dload 3 /* probability */
            aload 7 /* sample */
            invokevirtual org.apache.commons.math3.util.Pair.getValue:()Ljava/lang/Object;
            checkcast java.lang.Double
            invokevirtual java.lang.Double.doubleValue:()D
            dadd
            dstore 3 /* probability */
         9: .line 222
            aload 7 /* sample */
            invokevirtual org.apache.commons.math3.util.Pair.getKey:()Ljava/lang/Object;
            checkcast java.lang.Double
            invokevirtual java.lang.Double.doubleValue:()D
            dstore 5 /* x */
        10: .line 224
            dload 3 /* probability */
            dload 1 /* p */
            dcmpl
            iflt 12
        11: .line 225
            goto 13
        end local 7 // org.apache.commons.math3.util.Pair sample
        12: .line 216
      StackMap locals: org.apache.commons.math3.distribution.EnumeratedRealDistribution double double double top java.util.Iterator
      StackMap stack:
            aload 8
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 5
        13: .line 229
      StackMap locals: org.apache.commons.math3.distribution.EnumeratedRealDistribution double double double
      StackMap stack:
            dload 5 /* x */
            dreturn
        end local 5 // double x
        end local 3 // double probability
        end local 1 // double p
        end local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   14     0         this  Lorg/apache/commons/math3/distribution/EnumeratedRealDistribution;
            0   14     1            p  D
            3   14     3  probability  D
            4   14     5            x  D
            6   12     7       sample  Lorg/apache/commons/math3/util/Pair<Ljava/lang/Double;Ljava/lang/Double;>;
    Exceptions:
      throws org.apache.commons.math3.exception.OutOfRangeException
    MethodParameters:
      Name  Flags
      p     final

  public double getNumericalMean();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=1
        start local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
         0: .line 238
            dconst_0
            dstore 1 /* mean */
        start local 1 // double mean
         1: .line 240
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.EnumeratedRealDistribution.innerDistribution:Lorg/apache/commons/math3/distribution/EnumeratedDistribution;
            invokevirtual org.apache.commons.math3.distribution.EnumeratedDistribution.getPmf:()Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: org.apache.commons.math3.distribution.EnumeratedRealDistribution double top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.util.Pair
            astore 3 /* sample */
        start local 3 // org.apache.commons.math3.util.Pair sample
         3: .line 241
            dload 1 /* mean */
            aload 3 /* sample */
            invokevirtual org.apache.commons.math3.util.Pair.getValue:()Ljava/lang/Object;
            checkcast java.lang.Double
            invokevirtual java.lang.Double.doubleValue:()D
            aload 3 /* sample */
            invokevirtual org.apache.commons.math3.util.Pair.getKey:()Ljava/lang/Object;
            checkcast java.lang.Double
            invokevirtual java.lang.Double.doubleValue:()D
            dmul
            dadd
            dstore 1 /* mean */
        end local 3 // org.apache.commons.math3.util.Pair sample
         4: .line 240
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 244
            dload 1 /* mean */
            dreturn
        end local 1 // double mean
        end local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/apache/commons/math3/distribution/EnumeratedRealDistribution;
            1    6     1    mean  D
            3    4     3  sample  Lorg/apache/commons/math3/util/Pair<Ljava/lang/Double;Ljava/lang/Double;>;

  public double getNumericalVariance();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=7, args_size=1
        start local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
         0: .line 253
            dconst_0
            dstore 1 /* mean */
        start local 1 // double mean
         1: .line 254
            dconst_0
            dstore 3 /* meanOfSquares */
        start local 3 // double meanOfSquares
         2: .line 256
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.EnumeratedRealDistribution.innerDistribution:Lorg/apache/commons/math3/distribution/EnumeratedDistribution;
            invokevirtual org.apache.commons.math3.distribution.EnumeratedDistribution.getPmf:()Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 6
            goto 6
      StackMap locals: org.apache.commons.math3.distribution.EnumeratedRealDistribution double double top java.util.Iterator
      StackMap stack:
         3: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.util.Pair
            astore 5 /* sample */
        start local 5 // org.apache.commons.math3.util.Pair sample
         4: .line 257
            dload 1 /* mean */
            aload 5 /* sample */
            invokevirtual org.apache.commons.math3.util.Pair.getValue:()Ljava/lang/Object;
            checkcast java.lang.Double
            invokevirtual java.lang.Double.doubleValue:()D
            aload 5 /* sample */
            invokevirtual org.apache.commons.math3.util.Pair.getKey:()Ljava/lang/Object;
            checkcast java.lang.Double
            invokevirtual java.lang.Double.doubleValue:()D
            dmul
            dadd
            dstore 1 /* mean */
         5: .line 258
            dload 3 /* meanOfSquares */
            aload 5 /* sample */
            invokevirtual org.apache.commons.math3.util.Pair.getValue:()Ljava/lang/Object;
            checkcast java.lang.Double
            invokevirtual java.lang.Double.doubleValue:()D
            aload 5 /* sample */
            invokevirtual org.apache.commons.math3.util.Pair.getKey:()Ljava/lang/Object;
            checkcast java.lang.Double
            invokevirtual java.lang.Double.doubleValue:()D
            dmul
            aload 5 /* sample */
            invokevirtual org.apache.commons.math3.util.Pair.getKey:()Ljava/lang/Object;
            checkcast java.lang.Double
            invokevirtual java.lang.Double.doubleValue:()D
            dmul
            dadd
            dstore 3 /* meanOfSquares */
        end local 5 // org.apache.commons.math3.util.Pair sample
         6: .line 256
      StackMap locals:
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         7: .line 261
            dload 3 /* meanOfSquares */
            dload 1 /* mean */
            dload 1 /* mean */
            dmul
            dsub
            dreturn
        end local 3 // double meanOfSquares
        end local 1 // double mean
        end local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    8     0           this  Lorg/apache/commons/math3/distribution/EnumeratedRealDistribution;
            1    8     1           mean  D
            2    8     3  meanOfSquares  D
            4    6     5         sample  Lorg/apache/commons/math3/util/Pair<Ljava/lang/Double;Ljava/lang/Double;>;

  public double getSupportLowerBound();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
         0: .line 272
            ldc Infinity
            dstore 1 /* min */
        start local 1 // double min
         1: .line 273
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.EnumeratedRealDistribution.innerDistribution:Lorg/apache/commons/math3/distribution/EnumeratedDistribution;
            invokevirtual org.apache.commons.math3.distribution.EnumeratedDistribution.getPmf:()Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 5
      StackMap locals: org.apache.commons.math3.distribution.EnumeratedRealDistribution double top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.util.Pair
            astore 3 /* sample */
        start local 3 // org.apache.commons.math3.util.Pair sample
         3: .line 274
            aload 3 /* sample */
            invokevirtual org.apache.commons.math3.util.Pair.getKey:()Ljava/lang/Object;
            checkcast java.lang.Double
            invokevirtual java.lang.Double.doubleValue:()D
            dload 1 /* min */
            dcmpg
            ifge 5
            aload 3 /* sample */
            invokevirtual org.apache.commons.math3.util.Pair.getValue:()Ljava/lang/Object;
            checkcast java.lang.Double
            invokevirtual java.lang.Double.doubleValue:()D
            dconst_0
            dcmpl
            ifle 5
         4: .line 275
            aload 3 /* sample */
            invokevirtual org.apache.commons.math3.util.Pair.getKey:()Ljava/lang/Object;
            checkcast java.lang.Double
            invokevirtual java.lang.Double.doubleValue:()D
            dstore 1 /* min */
        end local 3 // org.apache.commons.math3.util.Pair sample
         5: .line 273
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         6: .line 279
            dload 1 /* min */
            dreturn
        end local 1 // double min
        end local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/apache/commons/math3/distribution/EnumeratedRealDistribution;
            1    7     1     min  D
            3    5     3  sample  Lorg/apache/commons/math3/util/Pair<Ljava/lang/Double;Ljava/lang/Double;>;

  public double getSupportUpperBound();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
         0: .line 290
            ldc -Infinity
            dstore 1 /* max */
        start local 1 // double max
         1: .line 291
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.EnumeratedRealDistribution.innerDistribution:Lorg/apache/commons/math3/distribution/EnumeratedDistribution;
            invokevirtual org.apache.commons.math3.distribution.EnumeratedDistribution.getPmf:()Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 5
      StackMap locals: org.apache.commons.math3.distribution.EnumeratedRealDistribution double top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.util.Pair
            astore 3 /* sample */
        start local 3 // org.apache.commons.math3.util.Pair sample
         3: .line 292
            aload 3 /* sample */
            invokevirtual org.apache.commons.math3.util.Pair.getKey:()Ljava/lang/Object;
            checkcast java.lang.Double
            invokevirtual java.lang.Double.doubleValue:()D
            dload 1 /* max */
            dcmpl
            ifle 5
            aload 3 /* sample */
            invokevirtual org.apache.commons.math3.util.Pair.getValue:()Ljava/lang/Object;
            checkcast java.lang.Double
            invokevirtual java.lang.Double.doubleValue:()D
            dconst_0
            dcmpl
            ifle 5
         4: .line 293
            aload 3 /* sample */
            invokevirtual org.apache.commons.math3.util.Pair.getKey:()Ljava/lang/Object;
            checkcast java.lang.Double
            invokevirtual java.lang.Double.doubleValue:()D
            dstore 1 /* max */
        end local 3 // org.apache.commons.math3.util.Pair sample
         5: .line 291
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         6: .line 297
            dload 1 /* max */
            dreturn
        end local 1 // double max
        end local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/apache/commons/math3/distribution/EnumeratedRealDistribution;
            1    7     1     max  D
            3    5     3  sample  Lorg/apache/commons/math3/util/Pair<Ljava/lang/Double;Ljava/lang/Double;>;

  public boolean isSupportLowerBoundInclusive();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
         0: .line 308
            iconst_1
            ireturn
        end local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/EnumeratedRealDistribution;

  public boolean isSupportUpperBoundInclusive();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
         0: .line 319
            iconst_1
            ireturn
        end local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/EnumeratedRealDistribution;

  public boolean isSupportConnected();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
         0: .line 330
            iconst_1
            ireturn
        end local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/EnumeratedRealDistribution;

  public double sample();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
         0: .line 338
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.EnumeratedRealDistribution.innerDistribution:Lorg/apache/commons/math3/distribution/EnumeratedDistribution;
            invokevirtual org.apache.commons.math3.distribution.EnumeratedDistribution.sample:()Ljava/lang/Object;
            checkcast java.lang.Double
            invokevirtual java.lang.Double.doubleValue:()D
            dreturn
        end local 0 // org.apache.commons.math3.distribution.EnumeratedRealDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/EnumeratedRealDistribution;
}
SourceFile: "EnumeratedRealDistribution.java"
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map