public abstract class org.apache.commons.math3.distribution.AbstractRealDistribution implements org.apache.commons.math3.distribution.RealDistribution, java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.apache.commons.math3.distribution.AbstractRealDistribution
  super_class: java.lang.Object
{
  public static final double SOLVER_DEFAULT_ABSOLUTE_ACCURACY;
    descriptor: D
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1.0E-6

  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -38038050983108802

  protected org.apache.commons.math3.random.RandomDataImpl randomData;
    descriptor: Lorg/apache/commons/math3/random/RandomDataImpl;
    flags: (0x0004) ACC_PROTECTED
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()

  protected final org.apache.commons.math3.random.RandomGenerator random;
    descriptor: Lorg/apache/commons/math3/random/RandomGenerator;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  private double solverAbsoluteAccuracy;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  protected void <init>();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.distribution.AbstractRealDistribution this
         0: .line 66
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 49
            aload 0 /* this */
         2: .line 50
            new org.apache.commons.math3.random.RandomDataImpl
            dup
            invokespecial org.apache.commons.math3.random.RandomDataImpl.<init>:()V
            putfield org.apache.commons.math3.distribution.AbstractRealDistribution.randomData:Lorg/apache/commons/math3/random/RandomDataImpl;
         3: .line 59
            aload 0 /* this */
            ldc 1.0E-6
            putfield org.apache.commons.math3.distribution.AbstractRealDistribution.solverAbsoluteAccuracy:D
         4: .line 69
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.math3.distribution.AbstractRealDistribution.random:Lorg/apache/commons/math3/random/RandomGenerator;
         5: .line 70
            return
        end local 0 // org.apache.commons.math3.distribution.AbstractRealDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/math3/distribution/AbstractRealDistribution;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()

  protected void <init>(org.apache.commons.math3.random.RandomGenerator);
    descriptor: (Lorg/apache/commons/math3/random/RandomGenerator;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.distribution.AbstractRealDistribution this
        start local 1 // org.apache.commons.math3.random.RandomGenerator rng
         0: .line 75
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 49
            aload 0 /* this */
         2: .line 50
            new org.apache.commons.math3.random.RandomDataImpl
            dup
            invokespecial org.apache.commons.math3.random.RandomDataImpl.<init>:()V
            putfield org.apache.commons.math3.distribution.AbstractRealDistribution.randomData:Lorg/apache/commons/math3/random/RandomDataImpl;
         3: .line 59
            aload 0 /* this */
            ldc 1.0E-6
            putfield org.apache.commons.math3.distribution.AbstractRealDistribution.solverAbsoluteAccuracy:D
         4: .line 76
            aload 0 /* this */
            aload 1 /* rng */
            putfield org.apache.commons.math3.distribution.AbstractRealDistribution.random:Lorg/apache/commons/math3/random/RandomGenerator;
         5: .line 77
            return
        end local 1 // org.apache.commons.math3.random.RandomGenerator rng
        end local 0 // org.apache.commons.math3.distribution.AbstractRealDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/math3/distribution/AbstractRealDistribution;
            0    6     1   rng  Lorg/apache/commons/math3/random/RandomGenerator;
    MethodParameters:
      Name  Flags
      rng   

  public double cumulativeProbability(double, double);
    descriptor: (DD)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // org.apache.commons.math3.distribution.AbstractRealDistribution this
        start local 1 // double x0
        start local 3 // double x1
         0: .line 90
            aload 0 /* this */
            dload 1 /* x0 */
            dload 3 /* x1 */
            invokevirtual org.apache.commons.math3.distribution.AbstractRealDistribution.probability:(DD)D
            dreturn
        end local 3 // double x1
        end local 1 // double x0
        end local 0 // org.apache.commons.math3.distribution.AbstractRealDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/AbstractRealDistribution;
            0    1     1    x0  D
            0    1     3    x1  D
    Exceptions:
      throws org.apache.commons.math3.exception.NumberIsTooLargeException
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
      Name  Flags
      x0    
      x1    

  public double probability(double, double);
    descriptor: (DD)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=3
        start local 0 // org.apache.commons.math3.distribution.AbstractRealDistribution this
        start local 1 // double x0
        start local 3 // double x1
         0: .line 111
            dload 1 /* x0 */
            dload 3 /* x1 */
            dcmpl
            ifle 4
         1: .line 112
            new org.apache.commons.math3.exception.NumberIsTooLargeException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.LOWER_ENDPOINT_ABOVE_UPPER_ENDPOINT:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
         2: .line 113
            dload 1 /* x0 */
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            dload 3 /* x1 */
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            iconst_1
         3: .line 112
            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 115
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 3 /* x1 */
            invokevirtual org.apache.commons.math3.distribution.AbstractRealDistribution.cumulativeProbability:(D)D
            aload 0 /* this */
            dload 1 /* x0 */
            invokevirtual org.apache.commons.math3.distribution.AbstractRealDistribution.cumulativeProbability:(D)D
            dsub
            dreturn
        end local 3 // double x1
        end local 1 // double x0
        end local 0 // org.apache.commons.math3.distribution.AbstractRealDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/math3/distribution/AbstractRealDistribution;
            0    5     1    x0  D
            0    5     3    x1  D
    MethodParameters:
      Name  Flags
      x0    
      x1    

  public double inverseCumulativeProbability(double);
    descriptor: (D)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=10, locals=21, args_size=2
        start local 0 // org.apache.commons.math3.distribution.AbstractRealDistribution this
        start local 1 // double p
         0: .line 156
            dload 1 /* p */
            dconst_0
            dcmpg
            iflt 1
            dload 1 /* p */
            dconst_1
            dcmpl
            ifle 2
         1: .line 157
      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 160
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.distribution.AbstractRealDistribution.getSupportLowerBound:()D
            dstore 3 /* lowerBound */
        start local 3 // double lowerBound
         3: .line 161
            dload 1 /* p */
            dconst_0
            dcmpl
            ifne 5
         4: .line 162
            dload 3 /* lowerBound */
            dreturn
         5: .line 165
      StackMap locals: double
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.distribution.AbstractRealDistribution.getSupportUpperBound:()D
            dstore 5 /* upperBound */
        start local 5 // double upperBound
         6: .line 166
            dload 1 /* p */
            dconst_1
            dcmpl
            ifne 8
         7: .line 167
            dload 5 /* upperBound */
            dreturn
         8: .line 170
      StackMap locals: double
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.distribution.AbstractRealDistribution.getNumericalMean:()D
            dstore 7 /* mu */
        start local 7 // double mu
         9: .line 171
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.distribution.AbstractRealDistribution.getNumericalVariance:()D
            invokestatic org.apache.commons.math3.util.FastMath.sqrt:(D)D
            dstore 9 /* sig */
        start local 9 // double sig
        10: .line 173
            dload 7 /* mu */
            invokestatic java.lang.Double.isInfinite:(D)Z
            ifne 12
            dload 7 /* mu */
            invokestatic java.lang.Double.isNaN:(D)Z
            ifne 12
        11: .line 174
            dload 9 /* sig */
            invokestatic java.lang.Double.isInfinite:(D)Z
            ifne 12
            dload 9 /* sig */
            invokestatic java.lang.Double.isNaN:(D)Z
            ifeq 13
        12: .line 173
      StackMap locals: double double
      StackMap stack:
            iconst_0
            goto 14
      StackMap locals:
      StackMap stack:
        13: iconst_1
      StackMap locals:
      StackMap stack: int
        14: istore 11 /* chebyshevApplies */
        start local 11 // boolean chebyshevApplies
        15: .line 176
            dload 3 /* lowerBound */
            ldc -Infinity
            dcmpl
            ifne 23
        16: .line 177
            iload 11 /* chebyshevApplies */
            ifeq 19
        17: .line 178
            dload 7 /* mu */
            dload 9 /* sig */
            dconst_1
            dload 1 /* p */
            dsub
            dload 1 /* p */
            ddiv
            invokestatic org.apache.commons.math3.util.FastMath.sqrt:(D)D
            dmul
            dsub
            dstore 3 /* lowerBound */
        18: .line 179
            goto 23
        19: .line 180
      StackMap locals: int
      StackMap stack:
            ldc -1.0
            dstore 3 /* lowerBound */
        20: .line 181
            goto 22
        21: .line 182
      StackMap locals:
      StackMap stack:
            dload 3 /* lowerBound */
            ldc 2.0
            dmul
            dstore 3 /* lowerBound */
        22: .line 181
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 3 /* lowerBound */
            invokevirtual org.apache.commons.math3.distribution.AbstractRealDistribution.cumulativeProbability:(D)D
            dload 1 /* p */
            dcmpl
            ifge 21
        23: .line 187
      StackMap locals:
      StackMap stack:
            dload 5 /* upperBound */
            ldc Infinity
            dcmpl
            ifne 31
        24: .line 188
            iload 11 /* chebyshevApplies */
            ifeq 27
        25: .line 189
            dload 7 /* mu */
            dload 9 /* sig */
            dload 1 /* p */
            dconst_1
            dload 1 /* p */
            dsub
            ddiv
            invokestatic org.apache.commons.math3.util.FastMath.sqrt:(D)D
            dmul
            dadd
            dstore 5 /* upperBound */
        26: .line 190
            goto 31
        27: .line 191
      StackMap locals:
      StackMap stack:
            dconst_1
            dstore 5 /* upperBound */
        28: .line 192
            goto 30
        29: .line 193
      StackMap locals:
      StackMap stack:
            dload 5 /* upperBound */
            ldc 2.0
            dmul
            dstore 5 /* upperBound */
        30: .line 192
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 5 /* upperBound */
            invokevirtual org.apache.commons.math3.distribution.AbstractRealDistribution.cumulativeProbability:(D)D
            dload 1 /* p */
            dcmpg
            iflt 29
        31: .line 198
      StackMap locals:
      StackMap stack:
            new org.apache.commons.math3.distribution.AbstractRealDistribution$1
            dup
            aload 0 /* this */
            dload 1 /* p */
            invokespecial org.apache.commons.math3.distribution.AbstractRealDistribution$1.<init>:(Lorg/apache/commons/math3/distribution/AbstractRealDistribution;D)V
            astore 12 /* toSolve */
        start local 12 // org.apache.commons.math3.analysis.UnivariateFunction toSolve
        32: .line 205
            aload 12 /* toSolve */
        33: .line 206
            dload 3 /* lowerBound */
        34: .line 207
            dload 5 /* upperBound */
        35: .line 208
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.distribution.AbstractRealDistribution.getSolverAbsoluteAccuracy:()D
        36: .line 205
            invokestatic org.apache.commons.math3.analysis.solvers.UnivariateSolverUtils.solve:(Lorg/apache/commons/math3/analysis/UnivariateFunction;DDD)D
            dstore 13 /* x */
        start local 13 // double x
        37: .line 210
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.distribution.AbstractRealDistribution.isSupportConnected:()Z
            ifne 51
        38: .line 212
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.distribution.AbstractRealDistribution.getSolverAbsoluteAccuracy:()D
            dstore 15 /* dx */
        start local 15 // double dx
        39: .line 213
            dload 13 /* x */
            dload 15 /* dx */
            dsub
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.distribution.AbstractRealDistribution.getSupportLowerBound:()D
            dcmpl
            iflt 51
        40: .line 214
            aload 0 /* this */
            dload 13 /* x */
            invokevirtual org.apache.commons.math3.distribution.AbstractRealDistribution.cumulativeProbability:(D)D
            dstore 17 /* px */
        start local 17 // double px
        41: .line 215
            aload 0 /* this */
            dload 13 /* x */
            dload 15 /* dx */
            dsub
            invokevirtual org.apache.commons.math3.distribution.AbstractRealDistribution.cumulativeProbability:(D)D
            dload 17 /* px */
            dcmpl
            ifne 51
        42: .line 216
            dload 13 /* x */
            dstore 5 /* upperBound */
        43: .line 217
            goto 49
        44: .line 218
      StackMap locals: org.apache.commons.math3.distribution.AbstractRealDistribution double double double double double int org.apache.commons.math3.analysis.UnivariateFunction double double double
      StackMap stack:
            ldc 0.5
            dload 3 /* lowerBound */
            dload 5 /* upperBound */
            dadd
            dmul
            dstore 19 /* midPoint */
        start local 19 // double midPoint
        45: .line 219
            aload 0 /* this */
            dload 19 /* midPoint */
            invokevirtual org.apache.commons.math3.distribution.AbstractRealDistribution.cumulativeProbability:(D)D
            dload 17 /* px */
            dcmpg
            ifge 48
        46: .line 220
            dload 19 /* midPoint */
            dstore 3 /* lowerBound */
        47: .line 221
            goto 49
        48: .line 222
      StackMap locals: double
      StackMap stack:
            dload 19 /* midPoint */
            dstore 5 /* upperBound */
        end local 19 // double midPoint
        49: .line 217
      StackMap locals:
      StackMap stack:
            dload 5 /* upperBound */
            dload 3 /* lowerBound */
            dsub
            dload 15 /* dx */
            dcmpl
            ifgt 44
        50: .line 225
            dload 5 /* upperBound */
            dreturn
        end local 17 // double px
        end local 15 // double dx
        51: .line 229
      StackMap locals:
      StackMap stack:
            dload 13 /* x */
            dreturn
        end local 13 // double x
        end local 12 // org.apache.commons.math3.analysis.UnivariateFunction toSolve
        end local 11 // boolean chebyshevApplies
        end local 9 // double sig
        end local 7 // double mu
        end local 5 // double upperBound
        end local 3 // double lowerBound
        end local 1 // double p
        end local 0 // org.apache.commons.math3.distribution.AbstractRealDistribution this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   52     0              this  Lorg/apache/commons/math3/distribution/AbstractRealDistribution;
            0   52     1                 p  D
            3   52     3        lowerBound  D
            6   52     5        upperBound  D
            9   52     7                mu  D
           10   52     9               sig  D
           15   52    11  chebyshevApplies  Z
           32   52    12           toSolve  Lorg/apache/commons/math3/analysis/UnivariateFunction;
           37   52    13                 x  D
           39   51    15                dx  D
           41   51    17                px  D
           45   49    19          midPoint  D
    Exceptions:
      throws org.apache.commons.math3.exception.OutOfRangeException
    MethodParameters:
      Name  Flags
      p     final

  protected double getSolverAbsoluteAccuracy();
    descriptor: ()D
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.distribution.AbstractRealDistribution this
         0: .line 240
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.AbstractRealDistribution.solverAbsoluteAccuracy:D
            dreturn
        end local 0 // org.apache.commons.math3.distribution.AbstractRealDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/AbstractRealDistribution;

  public void reseedRandomGenerator(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.distribution.AbstractRealDistribution this
        start local 1 // long seed
         0: .line 245
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.AbstractRealDistribution.random:Lorg/apache/commons/math3/random/RandomGenerator;
            lload 1 /* seed */
            invokeinterface org.apache.commons.math3.random.RandomGenerator.setSeed:(J)V
         1: .line 246
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.AbstractRealDistribution.randomData:Lorg/apache/commons/math3/random/RandomDataImpl;
            lload 1 /* seed */
            invokevirtual org.apache.commons.math3.random.RandomDataImpl.reSeed:(J)V
         2: .line 247
            return
        end local 1 // long seed
        end local 0 // org.apache.commons.math3.distribution.AbstractRealDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/math3/distribution/AbstractRealDistribution;
            0    3     1  seed  J
    MethodParameters:
      Name  Flags
      seed  

  public double sample();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.distribution.AbstractRealDistribution this
         0: .line 258
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.AbstractRealDistribution.random:Lorg/apache/commons/math3/random/RandomGenerator;
            invokeinterface org.apache.commons.math3.random.RandomGenerator.nextDouble:()D
            invokevirtual org.apache.commons.math3.distribution.AbstractRealDistribution.inverseCumulativeProbability:(D)D
            dreturn
        end local 0 // org.apache.commons.math3.distribution.AbstractRealDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/AbstractRealDistribution;

  public double[] sample(int);
    descriptor: (I)[D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.apache.commons.math3.distribution.AbstractRealDistribution this
        start local 1 // int sampleSize
         0: .line 268
            iload 1 /* sampleSize */
            ifgt 4
         1: .line 269
            new org.apache.commons.math3.exception.NotStrictlyPositiveException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.NUMBER_OF_SAMPLES:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
         2: .line 270
            iload 1 /* sampleSize */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
         3: .line 269
            invokespecial org.apache.commons.math3.exception.NotStrictlyPositiveException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;Ljava/lang/Number;)V
            athrow
         4: .line 272
      StackMap locals:
      StackMap stack:
            iload 1 /* sampleSize */
            newarray 7
            astore 2 /* out */
        start local 2 // double[] out
         5: .line 273
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         6: goto 9
         7: .line 274
      StackMap locals: double[] int
      StackMap stack:
            aload 2 /* out */
            iload 3 /* i */
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.distribution.AbstractRealDistribution.sample:()D
            dastore
         8: .line 273
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 3 /* i */
            iload 1 /* sampleSize */
            if_icmplt 7
        end local 3 // int i
        10: .line 276
            aload 2 /* out */
            areturn
        end local 2 // double[] out
        end local 1 // int sampleSize
        end local 0 // org.apache.commons.math3.distribution.AbstractRealDistribution this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   11     0        this  Lorg/apache/commons/math3/distribution/AbstractRealDistribution;
            0   11     1  sampleSize  I
            5   11     2         out  [D
            6   10     3           i  I
    MethodParameters:
            Name  Flags
      sampleSize  

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

  public double logDensity(double);
    descriptor: (D)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.distribution.AbstractRealDistribution this
        start local 1 // double x
         0: .line 304
            aload 0 /* this */
            dload 1 /* x */
            invokevirtual org.apache.commons.math3.distribution.AbstractRealDistribution.density:(D)D
            invokestatic org.apache.commons.math3.util.FastMath.log:(D)D
            dreturn
        end local 1 // double x
        end local 0 // org.apache.commons.math3.distribution.AbstractRealDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/AbstractRealDistribution;
            0    1     1     x  D
    MethodParameters:
      Name  Flags
      x     
}
SourceFile: "AbstractRealDistribution.java"
NestMembers:
  org.apache.commons.math3.distribution.AbstractRealDistribution$1
InnerClasses:
  org.apache.commons.math3.distribution.AbstractRealDistribution$1