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

  private final int numberOfTrials;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  public void <init>(int, double);
    descriptor: (ID)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.apache.commons.math3.distribution.BinomialDistribution this
        start local 1 // int trials
        start local 2 // double p
         0: .line 58
            aload 0 /* this */
            new org.apache.commons.math3.random.Well19937c
            dup
            invokespecial org.apache.commons.math3.random.Well19937c.<init>:()V
            iload 1 /* trials */
            dload 2 /* p */
            invokespecial org.apache.commons.math3.distribution.BinomialDistribution.<init>:(Lorg/apache/commons/math3/random/RandomGenerator;ID)V
         1: .line 59
            return
        end local 2 // double p
        end local 1 // int trials
        end local 0 // org.apache.commons.math3.distribution.BinomialDistribution this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/apache/commons/math3/distribution/BinomialDistribution;
            0    2     1  trials  I
            0    2     2       p  D
    MethodParameters:
        Name  Flags
      trials  
      p       

  public void <init>(org.apache.commons.math3.random.RandomGenerator, int, double);
    descriptor: (Lorg/apache/commons/math3/random/RandomGenerator;ID)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // org.apache.commons.math3.distribution.BinomialDistribution this
        start local 1 // org.apache.commons.math3.random.RandomGenerator rng
        start local 2 // int trials
        start local 3 // double p
         0: .line 74
            aload 0 /* this */
            aload 1 /* rng */
            invokespecial org.apache.commons.math3.distribution.AbstractIntegerDistribution.<init>:(Lorg/apache/commons/math3/random/RandomGenerator;)V
         1: .line 76
            iload 2 /* trials */
            ifge 5
         2: .line 77
            new org.apache.commons.math3.exception.NotPositiveException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.NUMBER_OF_TRIALS:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
         3: .line 78
            iload 2 /* trials */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
         4: .line 77
            invokespecial org.apache.commons.math3.exception.NotPositiveException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;Ljava/lang/Number;)V
            athrow
         5: .line 80
      StackMap locals: org.apache.commons.math3.distribution.BinomialDistribution org.apache.commons.math3.random.RandomGenerator int double
      StackMap stack:
            dload 3 /* p */
            dconst_0
            dcmpg
            iflt 6
            dload 3 /* p */
            dconst_1
            dcmpl
            ifle 7
         6: .line 81
      StackMap locals:
      StackMap stack:
            new org.apache.commons.math3.exception.OutOfRangeException
            dup
            dload 3 /* 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
         7: .line 84
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 3 /* p */
            putfield org.apache.commons.math3.distribution.BinomialDistribution.probabilityOfSuccess:D
         8: .line 85
            aload 0 /* this */
            iload 2 /* trials */
            putfield org.apache.commons.math3.distribution.BinomialDistribution.numberOfTrials:I
         9: .line 86
            return
        end local 3 // double p
        end local 2 // int trials
        end local 1 // org.apache.commons.math3.random.RandomGenerator rng
        end local 0 // org.apache.commons.math3.distribution.BinomialDistribution this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lorg/apache/commons/math3/distribution/BinomialDistribution;
            0   10     1     rng  Lorg/apache/commons/math3/random/RandomGenerator;
            0   10     2  trials  I
            0   10     3       p  D
    MethodParameters:
        Name  Flags
      rng     
      trials  
      p       

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

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

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

  public double logProbability(int);
    descriptor: (I)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=4, args_size=2
        start local 0 // org.apache.commons.math3.distribution.BinomialDistribution this
        start local 1 // int x
         0: .line 115
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.BinomialDistribution.numberOfTrials:I
            ifne 4
         1: .line 116
            iload 1 /* x */
            ifne 2
            dconst_0
            goto 3
      StackMap locals:
      StackMap stack:
         2: ldc -Infinity
      StackMap locals:
      StackMap stack: double
         3: dreturn
         4: .line 119
      StackMap locals:
      StackMap stack:
            iload 1 /* x */
            iflt 5
            iload 1 /* x */
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.BinomialDistribution.numberOfTrials:I
            if_icmple 7
         5: .line 120
      StackMap locals:
      StackMap stack:
            ldc -Infinity
            dstore 2 /* ret */
        start local 2 // double ret
         6: .line 121
            goto 11
        end local 2 // double ret
         7: .line 122
      StackMap locals:
      StackMap stack:
            iload 1 /* x */
         8: .line 123
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.BinomialDistribution.numberOfTrials:I
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.BinomialDistribution.probabilityOfSuccess:D
         9: .line 124
            dconst_1
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.BinomialDistribution.probabilityOfSuccess:D
            dsub
        10: .line 122
            invokestatic org.apache.commons.math3.distribution.SaddlePointExpansion.logBinomialProbability:(IIDD)D
            dstore 2 /* ret */
        start local 2 // double ret
        11: .line 126
      StackMap locals: double
      StackMap stack:
            dload 2 /* ret */
            dreturn
        end local 2 // double ret
        end local 1 // int x
        end local 0 // org.apache.commons.math3.distribution.BinomialDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lorg/apache/commons/math3/distribution/BinomialDistribution;
            0   12     1     x  I
            6    7     2   ret  D
           11   12     2   ret  D
    MethodParameters:
      Name  Flags
      x     

  public double cumulativeProbability(int);
    descriptor: (I)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=4, args_size=2
        start local 0 // org.apache.commons.math3.distribution.BinomialDistribution this
        start local 1 // int x
         0: .line 132
            iload 1 /* x */
            ifge 3
         1: .line 133
            dconst_0
            dstore 2 /* ret */
        start local 2 // double ret
         2: .line 134
            goto 9
        end local 2 // double ret
      StackMap locals:
      StackMap stack:
         3: iload 1 /* x */
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.BinomialDistribution.numberOfTrials:I
            if_icmplt 6
         4: .line 135
            dconst_1
            dstore 2 /* ret */
        start local 2 // double ret
         5: .line 136
            goto 9
        end local 2 // double ret
         6: .line 137
      StackMap locals:
      StackMap stack:
            dconst_1
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.BinomialDistribution.probabilityOfSuccess:D
         7: .line 138
            iload 1 /* x */
            i2d
            dconst_1
            dadd
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.BinomialDistribution.numberOfTrials:I
            iload 1 /* x */
            isub
            i2d
         8: .line 137
            invokestatic org.apache.commons.math3.special.Beta.regularizedBeta:(DDD)D
            dsub
            dstore 2 /* ret */
        start local 2 // double ret
         9: .line 140
      StackMap locals: double
      StackMap stack:
            dload 2 /* ret */
            dreturn
        end local 2 // double ret
        end local 1 // int x
        end local 0 // org.apache.commons.math3.distribution.BinomialDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/apache/commons/math3/distribution/BinomialDistribution;
            0   10     1     x  I
            2    3     2   ret  D
            5    6     2   ret  D
            9   10     2   ret  D
    MethodParameters:
      Name  Flags
      x     

  public double getNumericalMean();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.distribution.BinomialDistribution this
         0: .line 150
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.BinomialDistribution.numberOfTrials:I
            i2d
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.BinomialDistribution.probabilityOfSuccess:D
            dmul
            dreturn
        end local 0 // org.apache.commons.math3.distribution.BinomialDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/BinomialDistribution;

  public double getNumericalVariance();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=1
        start local 0 // org.apache.commons.math3.distribution.BinomialDistribution this
         0: .line 160
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.BinomialDistribution.probabilityOfSuccess:D
            dstore 1 /* p */
        start local 1 // double p
         1: .line 161
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.BinomialDistribution.numberOfTrials:I
            i2d
            dload 1 /* p */
            dmul
            dconst_1
            dload 1 /* p */
            dsub
            dmul
            dreturn
        end local 1 // double p
        end local 0 // org.apache.commons.math3.distribution.BinomialDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/math3/distribution/BinomialDistribution;
            1    2     1     p  D

  public int getSupportLowerBound();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.distribution.BinomialDistribution this
         0: .line 173
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.BinomialDistribution.probabilityOfSuccess:D
            dconst_1
            dcmpg
            ifge 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.apache.commons.math3.distribution.BinomialDistribution.numberOfTrials:I
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // org.apache.commons.math3.distribution.BinomialDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/math3/distribution/BinomialDistribution;

  public int getSupportUpperBound();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.distribution.BinomialDistribution this
         0: .line 185
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.BinomialDistribution.probabilityOfSuccess:D
            dconst_0
            dcmpl
            ifle 1
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.BinomialDistribution.numberOfTrials:I
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // org.apache.commons.math3.distribution.BinomialDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/math3/distribution/BinomialDistribution;

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