class org.apache.commons.math3.stat.descriptive.moment.ThirdMoment extends org.apache.commons.math3.stat.descriptive.moment.SecondMoment implements java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.apache.commons.math3.stat.descriptive.moment.ThirdMoment
  super_class: org.apache.commons.math3.stat.descriptive.moment.SecondMoment
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -7818711964045118679

  protected double m3;
    descriptor: D
    flags: (0x0004) ACC_PROTECTED

  protected double nDevSq;
    descriptor: D
    flags: (0x0004) ACC_PROTECTED

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.stat.descriptive.moment.ThirdMoment this
         0: .line 70
            aload 0 /* this */
            invokespecial org.apache.commons.math3.stat.descriptive.moment.SecondMoment.<init>:()V
         1: .line 71
            aload 0 /* this */
            ldc NaN
            putfield org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.m3:D
         2: .line 72
            aload 0 /* this */
            ldc NaN
            putfield org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.nDevSq:D
         3: .line 73
            return
        end local 0 // org.apache.commons.math3.stat.descriptive.moment.ThirdMoment this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/math3/stat/descriptive/moment/ThirdMoment;

  void <init>(org.apache.commons.math3.stat.descriptive.moment.ThirdMoment);
    descriptor: (Lorg/apache/commons/math3/stat/descriptive/moment/ThirdMoment;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.stat.descriptive.moment.ThirdMoment this
        start local 1 // org.apache.commons.math3.stat.descriptive.moment.ThirdMoment original
         0: .line 82
            aload 0 /* this */
            invokespecial org.apache.commons.math3.stat.descriptive.moment.SecondMoment.<init>:()V
         1: .line 83
            aload 1 /* original */
            aload 0 /* this */
            invokestatic org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.copy:(Lorg/apache/commons/math3/stat/descriptive/moment/ThirdMoment;Lorg/apache/commons/math3/stat/descriptive/moment/ThirdMoment;)V
         2: .line 84
            return
        end local 1 // org.apache.commons.math3.stat.descriptive.moment.ThirdMoment original
        end local 0 // org.apache.commons.math3.stat.descriptive.moment.ThirdMoment this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/apache/commons/math3/stat/descriptive/moment/ThirdMoment;
            0    3     1  original  Lorg/apache/commons/math3/stat/descriptive/moment/ThirdMoment;
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException
    MethodParameters:
          Name  Flags
      original  

  public void increment(double);
    descriptor: (D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=7, args_size=2
        start local 0 // org.apache.commons.math3.stat.descriptive.moment.ThirdMoment this
        start local 1 // double d
         0: .line 91
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.n:J
            lconst_1
            lcmp
            ifge 2
         1: .line 92
            aload 0 /* this */
            aload 0 /* this */
            aload 0 /* this */
            dconst_0
            dup2_x1
            putfield org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.m1:D
            dup2_x1
            putfield org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.m2:D
            putfield org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.m3:D
         2: .line 95
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.m2:D
            dstore 3 /* prevM2 */
        start local 3 // double prevM2
         3: .line 96
            aload 0 /* this */
            dload 1 /* d */
            invokespecial org.apache.commons.math3.stat.descriptive.moment.SecondMoment.increment:(D)V
         4: .line 97
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.nDev:D
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.nDev:D
            dmul
            putfield org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.nDevSq:D
         5: .line 98
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.n:J
            l2d
            dstore 5 /* n0 */
        start local 5 // double n0
         6: .line 99
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.m3:D
            ldc 3.0
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.nDev:D
            dmul
            dload 3 /* prevM2 */
            dmul
            dsub
            dload 5 /* n0 */
            dconst_1
            dsub
            dload 5 /* n0 */
            ldc 2.0
            dsub
            dmul
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.nDevSq:D
            dmul
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.dev:D
            dmul
            dadd
            putfield org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.m3:D
         7: .line 100
            return
        end local 5 // double n0
        end local 3 // double prevM2
        end local 1 // double d
        end local 0 // org.apache.commons.math3.stat.descriptive.moment.ThirdMoment this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/apache/commons/math3/stat/descriptive/moment/ThirdMoment;
            0    8     1       d  D
            3    8     3  prevM2  D
            6    8     5      n0  D
    MethodParameters:
      Name  Flags
      d     final

  public double getResult();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.stat.descriptive.moment.ThirdMoment this
         0: .line 107
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.m3:D
            dreturn
        end local 0 // org.apache.commons.math3.stat.descriptive.moment.ThirdMoment this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/stat/descriptive/moment/ThirdMoment;

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.stat.descriptive.moment.ThirdMoment this
         0: .line 115
            aload 0 /* this */
            invokespecial org.apache.commons.math3.stat.descriptive.moment.SecondMoment.clear:()V
         1: .line 116
            aload 0 /* this */
            ldc NaN
            putfield org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.m3:D
         2: .line 117
            aload 0 /* this */
            ldc NaN
            putfield org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.nDevSq:D
         3: .line 118
            return
        end local 0 // org.apache.commons.math3.stat.descriptive.moment.ThirdMoment this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/math3/stat/descriptive/moment/ThirdMoment;

  public org.apache.commons.math3.stat.descriptive.moment.ThirdMoment copy();
    descriptor: ()Lorg/apache/commons/math3/stat/descriptive/moment/ThirdMoment;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.math3.stat.descriptive.moment.ThirdMoment this
         0: .line 125
            new org.apache.commons.math3.stat.descriptive.moment.ThirdMoment
            dup
            invokespecial org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.<init>:()V
            astore 1 /* result */
        start local 1 // org.apache.commons.math3.stat.descriptive.moment.ThirdMoment result
         1: .line 127
            aload 0 /* this */
            aload 1 /* result */
            invokestatic org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.copy:(Lorg/apache/commons/math3/stat/descriptive/moment/ThirdMoment;Lorg/apache/commons/math3/stat/descriptive/moment/ThirdMoment;)V
         2: .line 128
            aload 1 /* result */
            areturn
        end local 1 // org.apache.commons.math3.stat.descriptive.moment.ThirdMoment result
        end local 0 // org.apache.commons.math3.stat.descriptive.moment.ThirdMoment this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/apache/commons/math3/stat/descriptive/moment/ThirdMoment;
            1    3     1  result  Lorg/apache/commons/math3/stat/descriptive/moment/ThirdMoment;

  public static void copy(org.apache.commons.math3.stat.descriptive.moment.ThirdMoment, org.apache.commons.math3.stat.descriptive.moment.ThirdMoment);
    descriptor: (Lorg/apache/commons/math3/stat/descriptive/moment/ThirdMoment;Lorg/apache/commons/math3/stat/descriptive/moment/ThirdMoment;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.stat.descriptive.moment.ThirdMoment source
        start local 1 // org.apache.commons.math3.stat.descriptive.moment.ThirdMoment dest
         0: .line 141
            aload 0 /* source */
            invokestatic org.apache.commons.math3.util.MathUtils.checkNotNull:(Ljava/lang/Object;)V
         1: .line 142
            aload 1 /* dest */
            invokestatic org.apache.commons.math3.util.MathUtils.checkNotNull:(Ljava/lang/Object;)V
         2: .line 143
            aload 0 /* source */
            aload 1 /* dest */
            invokestatic org.apache.commons.math3.stat.descriptive.moment.SecondMoment.copy:(Lorg/apache/commons/math3/stat/descriptive/moment/SecondMoment;Lorg/apache/commons/math3/stat/descriptive/moment/SecondMoment;)V
         3: .line 144
            aload 1 /* dest */
            aload 0 /* source */
            getfield org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.m3:D
            putfield org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.m3:D
         4: .line 145
            aload 1 /* dest */
            aload 0 /* source */
            getfield org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.nDevSq:D
            putfield org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.nDevSq:D
         5: .line 146
            return
        end local 1 // org.apache.commons.math3.stat.descriptive.moment.ThirdMoment dest
        end local 0 // org.apache.commons.math3.stat.descriptive.moment.ThirdMoment source
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0  source  Lorg/apache/commons/math3/stat/descriptive/moment/ThirdMoment;
            0    6     1    dest  Lorg/apache/commons/math3/stat/descriptive/moment/ThirdMoment;
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException
    MethodParameters:
        Name  Flags
      source  
      dest    

  public org.apache.commons.math3.stat.descriptive.moment.SecondMoment copy();
    descriptor: ()Lorg/apache/commons/math3/stat/descriptive/moment/SecondMoment;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.copy:()Lorg/apache/commons/math3/stat/descriptive/moment/ThirdMoment;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.apache.commons.math3.stat.descriptive.UnivariateStatistic copy();
    descriptor: ()Lorg/apache/commons/math3/stat/descriptive/UnivariateStatistic;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.copy:()Lorg/apache/commons/math3/stat/descriptive/moment/ThirdMoment;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.apache.commons.math3.stat.descriptive.StorelessUnivariateStatistic copy();
    descriptor: ()Lorg/apache/commons/math3/stat/descriptive/StorelessUnivariateStatistic;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.copy:()Lorg/apache/commons/math3/stat/descriptive/moment/ThirdMoment;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.apache.commons.math3.stat.descriptive.moment.FirstMoment copy();
    descriptor: ()Lorg/apache/commons/math3/stat/descriptive/moment/FirstMoment;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.apache.commons.math3.stat.descriptive.moment.ThirdMoment.copy:()Lorg/apache/commons/math3/stat/descriptive/moment/ThirdMoment;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "ThirdMoment.java"