public class org.apache.commons.math3.distribution.LogisticDistribution 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.LogisticDistribution
  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 s;
    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.LogisticDistribution this
        start local 1 // double mu
        start local 3 // double s
         0: .line 60
            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 /* s */
            invokespecial org.apache.commons.math3.distribution.LogisticDistribution.<init>:(Lorg/apache/commons/math3/random/RandomGenerator;DD)V
         1: .line 61
            return
        end local 3 // double s
        end local 1 // double mu
        end local 0 // org.apache.commons.math3.distribution.LogisticDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/math3/distribution/LogisticDistribution;
            0    2     1    mu  D
            0    2     3     s  D
    MethodParameters:
      Name  Flags
      mu    
      s     

  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.LogisticDistribution this
        start local 1 // org.apache.commons.math3.random.RandomGenerator rng
        start local 2 // double mu
        start local 4 // double s
         0: .line 72
            aload 0 /* this */
            aload 1 /* rng */
            invokespecial org.apache.commons.math3.distribution.AbstractRealDistribution.<init>:(Lorg/apache/commons/math3/random/RandomGenerator;)V
         1: .line 74
            dload 4 /* s */
            dconst_0
            dcmpg
            ifgt 3
         2: .line 75
            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 /* s */
            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 78
      StackMap locals: org.apache.commons.math3.distribution.LogisticDistribution org.apache.commons.math3.random.RandomGenerator double double
      StackMap stack:
            aload 0 /* this */
            dload 2 /* mu */
            putfield org.apache.commons.math3.distribution.LogisticDistribution.mu:D
         4: .line 79
            aload 0 /* this */
            dload 4 /* s */
            putfield org.apache.commons.math3.distribution.LogisticDistribution.s:D
         5: .line 80
            return
        end local 4 // double s
        end local 2 // double mu
        end local 1 // org.apache.commons.math3.random.RandomGenerator rng
        end local 0 // org.apache.commons.math3.distribution.LogisticDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/math3/distribution/LogisticDistribution;
            0    6     1   rng  Lorg/apache/commons/math3/random/RandomGenerator;
            0    6     2    mu  D
            0    6     4     s  D
    MethodParameters:
      Name  Flags
      rng   
      mu    
      s     

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

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

  public double density(double);
    descriptor: (D)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=7, args_size=2
        start local 0 // org.apache.commons.math3.distribution.LogisticDistribution this
        start local 1 // double x
         0: .line 102
            dload 1 /* x */
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.LogisticDistribution.mu:D
            dsub
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.LogisticDistribution.s:D
            ddiv
            dstore 3 /* z */
        start local 3 // double z
         1: .line 103
            dload 3 /* z */
            dneg
            invokestatic org.apache.commons.math3.util.FastMath.exp:(D)D
            dstore 5 /* v */
        start local 5 // double v
         2: .line 104
            dconst_1
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.LogisticDistribution.s:D
            ddiv
            dload 5 /* v */
            dmul
            dconst_1
            dload 5 /* v */
            dadd
            dconst_1
            dload 5 /* v */
            dadd
            dmul
            ddiv
            dreturn
        end local 5 // double v
        end local 3 // double z
        end local 1 // double x
        end local 0 // org.apache.commons.math3.distribution.LogisticDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/math3/distribution/LogisticDistribution;
            0    3     1     x  D
            1    3     3     z  D
            2    3     5     v  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.LogisticDistribution this
        start local 1 // double x
         0: .line 109
            dconst_1
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.LogisticDistribution.s:D
            ddiv
            dload 1 /* x */
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.LogisticDistribution.mu:D
            dsub
            dmul
            dstore 3 /* z */
        start local 3 // double z
         1: .line 110
            dconst_1
            dconst_1
            dload 3 /* z */
            dneg
            invokestatic org.apache.commons.math3.util.FastMath.exp:(D)D
            dadd
            ddiv
            dreturn
        end local 3 // double z
        end local 1 // double x
        end local 0 // org.apache.commons.math3.distribution.LogisticDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/math3/distribution/LogisticDistribution;
            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=8, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.distribution.LogisticDistribution this
        start local 1 // double p
         0: .line 116
            dload 1 /* p */
            dconst_0
            dcmpg
            iflt 1
            dload 1 /* p */
            dconst_1
            dcmpl
            ifle 2
         1: .line 117
      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 118
      StackMap locals:
      StackMap stack:
            dload 1 /* p */
            dconst_0
            dcmpl
            ifne 4
         3: .line 119
            dconst_0
            dreturn
         4: .line 120
      StackMap locals:
      StackMap stack:
            dload 1 /* p */
            dconst_1
            dcmpl
            ifne 6
         5: .line 121
            ldc Infinity
            dreturn
         6: .line 123
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.LogisticDistribution.s:D
            dload 1 /* p */
            dconst_1
            dload 1 /* p */
            dsub
            ddiv
            invokestatic java.lang.Math.log:(D)D
            dmul
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.LogisticDistribution.mu:D
            dadd
            dreturn
        end local 1 // double p
        end local 0 // org.apache.commons.math3.distribution.LogisticDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/commons/math3/distribution/LogisticDistribution;
            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=2, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.distribution.LogisticDistribution this
         0: .line 128
            aload 0 /* this */
            getfield org.apache.commons.math3.distribution.LogisticDistribution.mu:D
            dreturn
        end local 0 // org.apache.commons.math3.distribution.LogisticDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/distribution/LogisticDistribution;

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

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

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

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

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

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