public class org.apache.commons.math3.distribution.LaplaceDistribution 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.LaplaceDistribution
  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 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.LaplaceDistribution this
        start local 1 // double mu
        start local 3 // double beta
         0: .line 58
            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.LaplaceDistribution.<init>:(Lorg/apache/commons/math3/random/RandomGenerator;DD)V
         1: .line 59
            return
        end local 3 // double beta
        end local 1 // double mu
        end local 0 // org.apache.commons.math3.distribution.LaplaceDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/math3/distribution/LaplaceDistribution;
            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.LaplaceDistribution this
        start local 1 // org.apache.commons.math3.random.RandomGenerator rng
        start local 2 // double mu
        start local 4 // double beta
         0: .line 70
            aload 0 /* this */
            aload 1 /* rng */
            invokespecial org.apache.commons.math3.distribution.AbstractRealDistribution.<init>:(Lorg/apache/commons/math3/random/RandomGenerator;)V
         1: .line 72
            dload 4 /* beta */
            dconst_0
            dcmpg
            ifgt 3
         2: .line 73
            new org.apache.commons.math3.exception.NotStrictlyPositiveException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.NOT_POSITIVE_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 76
      StackMap locals: org.apache.commons.math3.distribution.LaplaceDistribution org.apache.commons.math3.random.RandomGenerator double double
      StackMap stack:
            aload 0 /* this */
            dload 2 /* mu */
            putfield org.apache.commons.math3.distribution.LaplaceDistribution.mu:D
         4: .line 77
            aload 0 /* this */
            dload 4 /* beta */
            putfield org.apache.commons.math3.distribution.LaplaceDistribution.beta:D
         5: .line 78
            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.LaplaceDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/math3/distribution/LaplaceDistribution;
            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.LaplaceDistribution this
         0: .line 86
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.LaplaceDistribution.mu:D
            dreturn
        end local 0 // org.apache.commons.math3.distribution.LaplaceDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/LaplaceDistribution;

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

  public double density(double);
    descriptor: (D)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.distribution.LaplaceDistribution this
        start local 1 // double x
         0: .line 100
            dload 1 /* x */
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.LaplaceDistribution.mu:D
            dsub
            invokestatic org.apache.commons.math3.util.FastMath.abs:(D)D
            dneg
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.LaplaceDistribution.beta:D
            ddiv
            invokestatic org.apache.commons.math3.util.FastMath.exp:(D)D
            ldc 2.0
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.LaplaceDistribution.beta:D
            dmul
            ddiv
            dreturn
        end local 1 // double x
        end local 0 // org.apache.commons.math3.distribution.LaplaceDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/LaplaceDistribution;
            0    1     1     x  D
    MethodParameters:
      Name  Flags
      x     

  public double cumulativeProbability(double);
    descriptor: (D)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.distribution.LaplaceDistribution this
        start local 1 // double x
         0: .line 105
            dload 1 /* x */
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.LaplaceDistribution.mu:D
            dcmpg
            ifgt 2
         1: .line 106
            dload 1 /* x */
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.LaplaceDistribution.mu:D
            dsub
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.LaplaceDistribution.beta:D
            ddiv
            invokestatic org.apache.commons.math3.util.FastMath.exp:(D)D
            ldc 2.0
            ddiv
            dreturn
         2: .line 108
      StackMap locals:
      StackMap stack:
            dconst_1
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.LaplaceDistribution.mu:D
            dload 1 /* x */
            dsub
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.LaplaceDistribution.beta:D
            ddiv
            invokestatic org.apache.commons.math3.util.FastMath.exp:(D)D
            ldc 2.0
            ddiv
            dsub
            dreturn
        end local 1 // double x
        end local 0 // org.apache.commons.math3.distribution.LaplaceDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/math3/distribution/LaplaceDistribution;
            0    3     1     x  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.LaplaceDistribution this
        start local 1 // double p
         0: .line 115
            dload 1 /* p */
            dconst_0
            dcmpg
            iflt 1
            dload 1 /* p */
            dconst_1
            dcmpl
            ifle 2
         1: .line 116
      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 117
      StackMap locals:
      StackMap stack:
            dload 1 /* p */
            dconst_0
            dcmpl
            ifne 4
         3: .line 118
            ldc -Infinity
            dreturn
         4: .line 119
      StackMap locals:
      StackMap stack:
            dload 1 /* p */
            dconst_1
            dcmpl
            ifne 6
         5: .line 120
            ldc Infinity
            dreturn
         6: .line 122
      StackMap locals:
      StackMap stack:
            dload 1 /* p */
            ldc 0.5
            dcmpl
            ifle 7
            ldc 2.0
            ldc 2.0
            dload 1 /* p */
            dmul
            dsub
            invokestatic java.lang.Math.log:(D)D
            dneg
            goto 8
      StackMap locals:
      StackMap stack:
         7: ldc 2.0
            dload 1 /* p */
            dmul
            invokestatic java.lang.Math.log:(D)D
      StackMap locals:
      StackMap stack: double
         8: dstore 3 /* x */
        start local 3 // double x
         9: .line 123
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.LaplaceDistribution.mu:D
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.LaplaceDistribution.beta:D
            dload 3 /* x */
            dmul
            dadd
            dreturn
        end local 3 // double x
        end local 1 // double p
        end local 0 // org.apache.commons.math3.distribution.LaplaceDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/apache/commons/math3/distribution/LaplaceDistribution;
            0   10     1     p  D
            9   10     3     x  D
    Exceptions:
      throws org.apache.commons.math3.exception.OutOfRangeException
    MethodParameters:
      Name  Flags
      p     

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

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

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

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

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

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

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