public class org.apache.commons.math3.distribution.GumbelDistribution 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.GumbelDistribution
  super_class: org.apache.commons.math3.distribution.AbstractRealDistribution
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 20141003

  private static final double EULER;
    descriptor: D
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0.5778636748954609

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

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

  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.GumbelDistribution this
        start local 1 // double mu
        start local 3 // double beta
         0: .line 66
            aload 0 /* this */
            new org.apache.commons.math3.random.Well19937c
            dup
            invokespecial org.apache.commons.math3.random.Well19937c.<init>:()V
            dload 1 /* mu */
            dload 3 /* beta */
            invokespecial org.apache.commons.math3.distribution.GumbelDistribution.<init>:(Lorg/apache/commons/math3/random/RandomGenerator;DD)V
         1: .line 67
            return
        end local 3 // double beta
        end local 1 // double mu
        end local 0 // org.apache.commons.math3.distribution.GumbelDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/math3/distribution/GumbelDistribution;
            0    2     1    mu  D
            0    2     3  beta  D
    MethodParameters:
      Name  Flags
      mu    
      beta  

  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.GumbelDistribution this
        start local 1 // org.apache.commons.math3.random.RandomGenerator rng
        start local 2 // double mu
        start local 4 // double beta
         0: .line 78
            aload 0 /* this */
            aload 1 /* rng */
            invokespecial org.apache.commons.math3.distribution.AbstractRealDistribution.<init>:(Lorg/apache/commons/math3/random/RandomGenerator;)V
         1: .line 80
            dload 4 /* beta */
            dconst_0
            dcmpg
            ifgt 3
         2: .line 81
            new org.apache.commons.math3.exception.NotStrictlyPositiveException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.SCALE:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
            dload 4 /* beta */
            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 84
      StackMap locals: org.apache.commons.math3.distribution.GumbelDistribution org.apache.commons.math3.random.RandomGenerator double double
      StackMap stack:
            aload 0 /* this */
            dload 4 /* beta */
            putfield org.apache.commons.math3.distribution.GumbelDistribution.beta:D
         4: .line 85
            aload 0 /* this */
            dload 2 /* mu */
            putfield org.apache.commons.math3.distribution.GumbelDistribution.mu:D
         5: .line 86
            return
        end local 4 // double beta
        end local 2 // double mu
        end local 1 // org.apache.commons.math3.random.RandomGenerator rng
        end local 0 // org.apache.commons.math3.distribution.GumbelDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/math3/distribution/GumbelDistribution;
            0    6     1   rng  Lorg/apache/commons/math3/random/RandomGenerator;
            0    6     2    mu  D
            0    6     4  beta  D
    MethodParameters:
      Name  Flags
      rng   
      mu    
      beta  

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

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

  public double density(double);
    descriptor: (D)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // org.apache.commons.math3.distribution.GumbelDistribution this
        start local 1 // double x
         0: .line 108
            dload 1 /* x */
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.GumbelDistribution.mu:D
            dsub
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.GumbelDistribution.beta:D
            ddiv
            dstore 3 /* z */
        start local 3 // double z
         1: .line 109
            dload 3 /* z */
            dneg
            invokestatic org.apache.commons.math3.util.FastMath.exp:(D)D
            dstore 5 /* t */
        start local 5 // double t
         2: .line 110
            dload 3 /* z */
            dneg
            dload 5 /* t */
            dsub
            invokestatic org.apache.commons.math3.util.FastMath.exp:(D)D
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.GumbelDistribution.beta:D
            ddiv
            dreturn
        end local 5 // double t
        end local 3 // double z
        end local 1 // double x
        end local 0 // org.apache.commons.math3.distribution.GumbelDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/math3/distribution/GumbelDistribution;
            0    3     1     x  D
            1    3     3     z  D
            2    3     5     t  D
    MethodParameters:
      Name  Flags
      x     

  public double cumulativeProbability(double);
    descriptor: (D)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.apache.commons.math3.distribution.GumbelDistribution this
        start local 1 // double x
         0: .line 115
            dload 1 /* x */
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.GumbelDistribution.mu:D
            dsub
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.GumbelDistribution.beta:D
            ddiv
            dstore 3 /* z */
        start local 3 // double z
         1: .line 116
            dload 3 /* z */
            dneg
            invokestatic org.apache.commons.math3.util.FastMath.exp:(D)D
            dneg
            invokestatic org.apache.commons.math3.util.FastMath.exp:(D)D
            dreturn
        end local 3 // double z
        end local 1 // double x
        end local 0 // org.apache.commons.math3.distribution.GumbelDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/math3/distribution/GumbelDistribution;
            0    2     1     x  D
            1    2     3     z  D
    MethodParameters:
      Name  Flags
      x     

  public double inverseCumulativeProbability(double);
    descriptor: (D)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.distribution.GumbelDistribution this
        start local 1 // double p
         0: .line 122
            dload 1 /* p */
            dconst_0
            dcmpg
            iflt 1
            dload 1 /* p */
            dconst_1
            dcmpl
            ifle 2
         1: .line 123
      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 124
      StackMap locals:
      StackMap stack:
            dload 1 /* p */
            dconst_0
            dcmpl
            ifne 4
         3: .line 125
            ldc -Infinity
            dreturn
         4: .line 126
      StackMap locals:
      StackMap stack:
            dload 1 /* p */
            dconst_1
            dcmpl
            ifne 6
         5: .line 127
            ldc Infinity
            dreturn
         6: .line 129
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.GumbelDistribution.mu:D
            dload 1 /* p */
            invokestatic org.apache.commons.math3.util.FastMath.log:(D)D
            dneg
            invokestatic org.apache.commons.math3.util.FastMath.log:(D)D
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.GumbelDistribution.beta:D
            dmul
            dsub
            dreturn
        end local 1 // double p
        end local 0 // org.apache.commons.math3.distribution.GumbelDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/commons/math3/distribution/GumbelDistribution;
            0    7     1     p  D
    Exceptions:
      throws org.apache.commons.math3.exception.OutOfRangeException
    MethodParameters:
      Name  Flags
      p     

  public double getNumericalMean();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.distribution.GumbelDistribution this
         0: .line 134
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.GumbelDistribution.mu:D
            ldc 0.5778636748954609
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.GumbelDistribution.beta:D
            dmul
            dadd
            dreturn
        end local 0 // org.apache.commons.math3.distribution.GumbelDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/GumbelDistribution;

  public double getNumericalVariance();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.distribution.GumbelDistribution this
         0: .line 139
            ldc 1.6449340668482264
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.GumbelDistribution.beta:D
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.GumbelDistribution.beta:D
            dmul
            dmul
            dreturn
        end local 0 // org.apache.commons.math3.distribution.GumbelDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/GumbelDistribution;

  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.GumbelDistribution this
         0: .line 144
            ldc -Infinity
            dreturn
        end local 0 // org.apache.commons.math3.distribution.GumbelDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/GumbelDistribution;

  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.GumbelDistribution this
         0: .line 149
            ldc Infinity
            dreturn
        end local 0 // org.apache.commons.math3.distribution.GumbelDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/GumbelDistribution;

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

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

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