public class org.apache.commons.math3.distribution.ExponentialDistribution 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.ExponentialDistribution
  super_class: org.apache.commons.math3.distribution.AbstractRealDistribution
{
  public static final double DEFAULT_INVERSE_ABSOLUTE_ACCURACY;
    descriptor: D
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1.0E-9

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

  private static final double[] EXPONENTIAL_SA_QI;
    descriptor: [D
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final double mean;
    descriptor: D
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final double logMean;
    descriptor: D
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final double solverAbsoluteAccuracy;
    descriptor: D
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=6, locals=6, args_size=0
         0: .line 71
            ldc 2.0
            invokestatic org.apache.commons.math3.util.FastMath.log:(D)D
            dstore 0 /* LN2 */
        start local 0 // double LN2
         1: .line 72
            dconst_0
            dstore 2 /* qi */
        start local 2 // double qi
         2: .line 73
            iconst_1
            istore 4 /* i */
        start local 4 // int i
         3: .line 81
            new org.apache.commons.math3.util.ResizableDoubleArray
            dup
            bipush 20
            invokespecial org.apache.commons.math3.util.ResizableDoubleArray.<init>:(I)V
            astore 5 /* ra */
        start local 5 // org.apache.commons.math3.util.ResizableDoubleArray ra
         4: .line 83
            goto 8
         5: .line 84
      StackMap locals: double double int org.apache.commons.math3.util.ResizableDoubleArray
      StackMap stack:
            dload 2 /* qi */
            dload 0 /* LN2 */
            iload 4 /* i */
            invokestatic org.apache.commons.math3.util.FastMath.pow:(DI)D
            iload 4 /* i */
            invokestatic org.apache.commons.math3.util.CombinatoricsUtils.factorial:(I)J
            l2d
            ddiv
            dadd
            dstore 2 /* qi */
         6: .line 85
            aload 5 /* ra */
            dload 2 /* qi */
            invokevirtual org.apache.commons.math3.util.ResizableDoubleArray.addElement:(D)V
         7: .line 86
            iinc 4 /* i */ 1
         8: .line 83
      StackMap locals:
      StackMap stack:
            dload 2 /* qi */
            dconst_1
            dcmpg
            iflt 5
         9: .line 89
            aload 5 /* ra */
            invokevirtual org.apache.commons.math3.util.ResizableDoubleArray.getElements:()[D
            putstatic org.apache.commons.math3.distribution.ExponentialDistribution.EXPONENTIAL_SA_QI:[D
        end local 5 // org.apache.commons.math3.util.ResizableDoubleArray ra
        end local 4 // int i
        end local 2 // double qi
        end local 0 // double LN2
        10: .line 90
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            1   10     0   LN2  D
            2   10     2    qi  D
            3   10     4     i  I
            4   10     5    ra  Lorg/apache/commons/math3/util/ResizableDoubleArray;

  public void <init>(double);
    descriptor: (D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
        start local 1 // double mean
         0: .line 105
            aload 0 /* this */
            dload 1 /* mean */
            ldc 1.0E-9
            invokespecial org.apache.commons.math3.distribution.ExponentialDistribution.<init>:(DD)V
         1: .line 106
            return
        end local 1 // double mean
        end local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/math3/distribution/ExponentialDistribution;
            0    2     1  mean  D
    MethodParameters:
      Name  Flags
      mean  

  public void <init>(double, double);
    descriptor: (DD)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=3
        start local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
        start local 1 // double mean
        start local 3 // double inverseCumAccuracy
         0: .line 126
            aload 0 /* this */
            new org.apache.commons.math3.random.Well19937c
            dup
            invokespecial org.apache.commons.math3.random.Well19937c.<init>:()V
            dload 1 /* mean */
            dload 3 /* inverseCumAccuracy */
            invokespecial org.apache.commons.math3.distribution.ExponentialDistribution.<init>:(Lorg/apache/commons/math3/random/RandomGenerator;DD)V
         1: .line 127
            return
        end local 3 // double inverseCumAccuracy
        end local 1 // double mean
        end local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Lorg/apache/commons/math3/distribution/ExponentialDistribution;
            0    2     1                mean  D
            0    2     3  inverseCumAccuracy  D
    MethodParameters:
                    Name  Flags
      mean                
      inverseCumAccuracy  

  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=4, args_size=3
        start local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
        start local 1 // org.apache.commons.math3.random.RandomGenerator rng
        start local 2 // double mean
         0: .line 139
            aload 0 /* this */
            aload 1 /* rng */
            dload 2 /* mean */
            ldc 1.0E-9
            invokespecial org.apache.commons.math3.distribution.ExponentialDistribution.<init>:(Lorg/apache/commons/math3/random/RandomGenerator;DD)V
         1: .line 140
            return
        end local 2 // double mean
        end local 1 // org.apache.commons.math3.random.RandomGenerator rng
        end local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/math3/distribution/ExponentialDistribution;
            0    2     1   rng  Lorg/apache/commons/math3/random/RandomGenerator;
            0    2     2  mean  D
    Exceptions:
      throws org.apache.commons.math3.exception.NotStrictlyPositiveException
    MethodParameters:
      Name  Flags
      rng   
      mean  

  public void <init>(org.apache.commons.math3.random.RandomGenerator, double, double);
    descriptor: (Lorg/apache/commons/math3/random/RandomGenerator;DD)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
        start local 1 // org.apache.commons.math3.random.RandomGenerator rng
        start local 2 // double mean
        start local 4 // double inverseCumAccuracy
         0: .line 157
            aload 0 /* this */
            aload 1 /* rng */
            invokespecial org.apache.commons.math3.distribution.AbstractRealDistribution.<init>:(Lorg/apache/commons/math3/random/RandomGenerator;)V
         1: .line 159
            dload 2 /* mean */
            dconst_0
            dcmpg
            ifgt 3
         2: .line 160
            new org.apache.commons.math3.exception.NotStrictlyPositiveException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.MEAN:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
            dload 2 /* mean */
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            invokespecial org.apache.commons.math3.exception.NotStrictlyPositiveException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;Ljava/lang/Number;)V
            athrow
         3: .line 162
      StackMap locals: org.apache.commons.math3.distribution.ExponentialDistribution org.apache.commons.math3.random.RandomGenerator double double
      StackMap stack:
            aload 0 /* this */
            dload 2 /* mean */
            putfield org.apache.commons.math3.distribution.ExponentialDistribution.mean:D
         4: .line 163
            aload 0 /* this */
            dload 2 /* mean */
            invokestatic org.apache.commons.math3.util.FastMath.log:(D)D
            putfield org.apache.commons.math3.distribution.ExponentialDistribution.logMean:D
         5: .line 164
            aload 0 /* this */
            dload 4 /* inverseCumAccuracy */
            putfield org.apache.commons.math3.distribution.ExponentialDistribution.solverAbsoluteAccuracy:D
         6: .line 165
            return
        end local 4 // double inverseCumAccuracy
        end local 2 // double mean
        end local 1 // org.apache.commons.math3.random.RandomGenerator rng
        end local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    7     0                this  Lorg/apache/commons/math3/distribution/ExponentialDistribution;
            0    7     1                 rng  Lorg/apache/commons/math3/random/RandomGenerator;
            0    7     2                mean  D
            0    7     4  inverseCumAccuracy  D
    Exceptions:
      throws org.apache.commons.math3.exception.NotStrictlyPositiveException
    MethodParameters:
                    Name  Flags
      rng                 
      mean                
      inverseCumAccuracy  

  public double getMean();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
         0: .line 173
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.ExponentialDistribution.mean:D
            dreturn
        end local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/ExponentialDistribution;

  public double density(double);
    descriptor: (D)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
        start local 1 // double x
         0: .line 178
            aload 0 /* this */
            dload 1 /* x */
            invokevirtual org.apache.commons.math3.distribution.ExponentialDistribution.logDensity:(D)D
            dstore 3 /* logDensity */
        start local 3 // double logDensity
         1: .line 179
            dload 3 /* logDensity */
            ldc -Infinity
            dcmpl
            ifne 2
            dconst_0
            goto 3
      StackMap locals: double
      StackMap stack:
         2: dload 3 /* logDensity */
            invokestatic org.apache.commons.math3.util.FastMath.exp:(D)D
      StackMap locals:
      StackMap stack: double
         3: dreturn
        end local 3 // double logDensity
        end local 1 // double x
        end local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lorg/apache/commons/math3/distribution/ExponentialDistribution;
            0    4     1           x  D
            1    4     3  logDensity  D
    MethodParameters:
      Name  Flags
      x     

  public double logDensity(double);
    descriptor: (D)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
        start local 1 // double x
         0: .line 185
            dload 1 /* x */
            dconst_0
            dcmpg
            ifge 2
         1: .line 186
            ldc -Infinity
            dreturn
         2: .line 188
      StackMap locals:
      StackMap stack:
            dload 1 /* x */
            dneg
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.ExponentialDistribution.mean:D
            ddiv
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.ExponentialDistribution.logMean:D
            dsub
            dreturn
        end local 1 // double x
        end local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/math3/distribution/ExponentialDistribution;
            0    3     1     x  D
    MethodParameters:
      Name  Flags
      x     

  public double cumulativeProbability(double);
    descriptor: (D)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=2
        start local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
        start local 1 // double x
         0: .line 203
            dload 1 /* x */
            dconst_0
            dcmpg
            ifgt 3
         1: .line 204
            dconst_0
            dstore 3 /* ret */
        start local 3 // double ret
         2: .line 205
            goto 4
        end local 3 // double ret
         3: .line 206
      StackMap locals:
      StackMap stack:
            dconst_1
            dload 1 /* x */
            dneg
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.ExponentialDistribution.mean:D
            ddiv
            invokestatic org.apache.commons.math3.util.FastMath.exp:(D)D
            dsub
            dstore 3 /* ret */
        start local 3 // double ret
         4: .line 208
      StackMap locals: double
      StackMap stack:
            dload 3 /* ret */
            dreturn
        end local 3 // double ret
        end local 1 // double x
        end local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/math3/distribution/ExponentialDistribution;
            0    5     1     x  D
            2    3     3   ret  D
            4    5     3   ret  D
    MethodParameters:
      Name  Flags
      x     

  public double inverseCumulativeProbability(double);
    descriptor: (D)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=2
        start local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
        start local 1 // double p
         0: .line 221
            dload 1 /* p */
            dconst_0
            dcmpg
            iflt 1
            dload 1 /* p */
            dconst_1
            dcmpl
            ifle 2
         1: .line 222
      StackMap locals:
      StackMap stack:
            new org.apache.commons.math3.exception.OutOfRangeException
            dup
            dload 1 /* p */
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            dconst_0
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            dconst_1
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            invokespecial org.apache.commons.math3.exception.OutOfRangeException.<init>:(Ljava/lang/Number;Ljava/lang/Number;Ljava/lang/Number;)V
            athrow
         2: .line 223
      StackMap locals:
      StackMap stack:
            dload 1 /* p */
            dconst_1
            dcmpl
            ifne 5
         3: .line 224
            ldc Infinity
            dstore 3 /* ret */
        start local 3 // double ret
         4: .line 225
            goto 6
        end local 3 // double ret
         5: .line 226
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.ExponentialDistribution.mean:D
            dneg
            dconst_1
            dload 1 /* p */
            dsub
            invokestatic org.apache.commons.math3.util.FastMath.log:(D)D
            dmul
            dstore 3 /* ret */
        start local 3 // double ret
         6: .line 229
      StackMap locals: double
      StackMap stack:
            dload 3 /* ret */
            dreturn
        end local 3 // double ret
        end local 1 // double p
        end local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/commons/math3/distribution/ExponentialDistribution;
            0    7     1     p  D
            4    5     3   ret  D
            6    7     3   ret  D
    Exceptions:
      throws org.apache.commons.math3.exception.OutOfRangeException
    MethodParameters:
      Name  Flags
      p     

  public double sample();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=10, args_size=1
        start local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
         0: .line 246
            dconst_0
            dstore 1 /* a */
        start local 1 // double a
         1: .line 247
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.ExponentialDistribution.random:Lorg/apache/commons/math3/random/RandomGenerator;
            invokeinterface org.apache.commons.math3.random.RandomGenerator.nextDouble:()D
            dstore 3 /* u */
        start local 3 // double u
         2: .line 250
            goto 5
         3: .line 251
      StackMap locals: double double
      StackMap stack:
            dload 1 /* a */
            getstatic org.apache.commons.math3.distribution.ExponentialDistribution.EXPONENTIAL_SA_QI:[D
            iconst_0
            daload
            dadd
            dstore 1 /* a */
         4: .line 252
            dload 3 /* u */
            ldc 2.0
            dmul
            dstore 3 /* u */
         5: .line 250
      StackMap locals:
      StackMap stack:
            dload 3 /* u */
            ldc 0.5
            dcmpg
            iflt 3
         6: .line 256
            dload 3 /* u */
            dload 3 /* u */
            dconst_1
            dsub
            dadd
            dstore 3 /* u */
         7: .line 259
            dload 3 /* u */
            getstatic org.apache.commons.math3.distribution.ExponentialDistribution.EXPONENTIAL_SA_QI:[D
            iconst_0
            daload
            dcmpg
            ifgt 9
         8: .line 260
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.ExponentialDistribution.mean:D
            dload 1 /* a */
            dload 3 /* u */
            dadd
            dmul
            dreturn
         9: .line 264
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        10: .line 265
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.ExponentialDistribution.random:Lorg/apache/commons/math3/random/RandomGenerator;
            invokeinterface org.apache.commons.math3.random.RandomGenerator.nextDouble:()D
            dstore 6 /* u2 */
        start local 6 // double u2
        11: .line 266
            dload 6 /* u2 */
            dstore 8 /* umin */
        start local 8 // double umin
        12: .line 270
      StackMap locals: int double double
      StackMap stack:
            iinc 5 /* i */ 1
        13: .line 271
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.ExponentialDistribution.random:Lorg/apache/commons/math3/random/RandomGenerator;
            invokeinterface org.apache.commons.math3.random.RandomGenerator.nextDouble:()D
            dstore 6 /* u2 */
        14: .line 273
            dload 6 /* u2 */
            dload 8 /* umin */
            dcmpg
            ifge 16
        15: .line 274
            dload 6 /* u2 */
            dstore 8 /* umin */
        16: .line 278
      StackMap locals:
      StackMap stack:
            dload 3 /* u */
            getstatic org.apache.commons.math3.distribution.ExponentialDistribution.EXPONENTIAL_SA_QI:[D
            iload 5 /* i */
            daload
        17: .line 269
            dcmpl
            ifgt 12
        18: .line 280
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.ExponentialDistribution.mean:D
            dload 1 /* a */
            dload 8 /* umin */
            getstatic org.apache.commons.math3.distribution.ExponentialDistribution.EXPONENTIAL_SA_QI:[D
            iconst_0
            daload
            dmul
            dadd
            dmul
            dreturn
        end local 8 // double umin
        end local 6 // double u2
        end local 5 // int i
        end local 3 // double u
        end local 1 // double a
        end local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   19     0  this  Lorg/apache/commons/math3/distribution/ExponentialDistribution;
            1   19     1     a  D
            2   19     3     u  D
           10   19     5     i  I
           11   19     6    u2  D
           12   19     8  umin  D

  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.ExponentialDistribution this
         0: .line 286
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.ExponentialDistribution.solverAbsoluteAccuracy:D
            dreturn
        end local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/ExponentialDistribution;

  public double getNumericalMean();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
         0: .line 295
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.distribution.ExponentialDistribution.getMean:()D
            dreturn
        end local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/ExponentialDistribution;

  public double getNumericalVariance();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
         0: .line 304
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.distribution.ExponentialDistribution.getMean:()D
            dstore 1 /* m */
        start local 1 // double m
         1: .line 305
            dload 1 /* m */
            dload 1 /* m */
            dmul
            dreturn
        end local 1 // double m
        end local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/math3/distribution/ExponentialDistribution;
            1    2     1     m  D

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

  public double getSupportUpperBound();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
         0: .line 328
            ldc Infinity
            dreturn
        end local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/ExponentialDistribution;

  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.ExponentialDistribution this
         0: .line 333
            iconst_1
            ireturn
        end local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/ExponentialDistribution;

  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.ExponentialDistribution this
         0: .line 338
            iconst_0
            ireturn
        end local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/ExponentialDistribution;

  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.ExponentialDistribution this
         0: .line 349
            iconst_1
            ireturn
        end local 0 // org.apache.commons.math3.distribution.ExponentialDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/ExponentialDistribution;
}
SourceFile: "ExponentialDistribution.java"