public class org.apache.commons.math3.stat.inference.TestUtils
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.stat.inference.TestUtils
  super_class: java.lang.Object
{
  private static final org.apache.commons.math3.stat.inference.TTest T_TEST;
    descriptor: Lorg/apache/commons/math3/stat/inference/TTest;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final org.apache.commons.math3.stat.inference.ChiSquareTest CHI_SQUARE_TEST;
    descriptor: Lorg/apache/commons/math3/stat/inference/ChiSquareTest;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final org.apache.commons.math3.stat.inference.OneWayAnova ONE_WAY_ANANOVA;
    descriptor: Lorg/apache/commons/math3/stat/inference/OneWayAnova;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final org.apache.commons.math3.stat.inference.GTest G_TEST;
    descriptor: Lorg/apache/commons/math3/stat/inference/GTest;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final org.apache.commons.math3.stat.inference.KolmogorovSmirnovTest KS_TEST;
    descriptor: Lorg/apache/commons/math3/stat/inference/KolmogorovSmirnovTest;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 44
            new org.apache.commons.math3.stat.inference.TTest
            dup
            invokespecial org.apache.commons.math3.stat.inference.TTest.<init>:()V
            putstatic org.apache.commons.math3.stat.inference.TestUtils.T_TEST:Lorg/apache/commons/math3/stat/inference/TTest;
         1: .line 47
            new org.apache.commons.math3.stat.inference.ChiSquareTest
            dup
            invokespecial org.apache.commons.math3.stat.inference.ChiSquareTest.<init>:()V
            putstatic org.apache.commons.math3.stat.inference.TestUtils.CHI_SQUARE_TEST:Lorg/apache/commons/math3/stat/inference/ChiSquareTest;
         2: .line 50
            new org.apache.commons.math3.stat.inference.OneWayAnova
            dup
            invokespecial org.apache.commons.math3.stat.inference.OneWayAnova.<init>:()V
            putstatic org.apache.commons.math3.stat.inference.TestUtils.ONE_WAY_ANANOVA:Lorg/apache/commons/math3/stat/inference/OneWayAnova;
         3: .line 53
            new org.apache.commons.math3.stat.inference.GTest
            dup
            invokespecial org.apache.commons.math3.stat.inference.GTest.<init>:()V
            putstatic org.apache.commons.math3.stat.inference.TestUtils.G_TEST:Lorg/apache/commons/math3/stat/inference/GTest;
         4: .line 56
            new org.apache.commons.math3.stat.inference.KolmogorovSmirnovTest
            dup
            invokespecial org.apache.commons.math3.stat.inference.KolmogorovSmirnovTest.<init>:()V
            putstatic org.apache.commons.math3.stat.inference.TestUtils.KS_TEST:Lorg/apache/commons/math3/stat/inference/KolmogorovSmirnovTest;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.stat.inference.TestUtils this
         0: .line 62
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 63
            return
        end local 0 // org.apache.commons.math3.stat.inference.TestUtils this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/math3/stat/inference/TestUtils;

  public static double homoscedasticT(double[], double[]);
    descriptor: ([D[D)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // double[] sample1
        start local 1 // double[] sample2
         0: .line 72
            getstatic org.apache.commons.math3.stat.inference.TestUtils.T_TEST:Lorg/apache/commons/math3/stat/inference/TTest;
            aload 0 /* sample1 */
            aload 1 /* sample2 */
            invokevirtual org.apache.commons.math3.stat.inference.TTest.homoscedasticT:([D[D)D
            dreturn
        end local 1 // double[] sample2
        end local 0 // double[] sample1
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  sample1  [D
            0    1     1  sample2  [D
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NumberIsTooSmallException
    MethodParameters:
         Name  Flags
      sample1  final
      sample2  final

  public static double homoscedasticT(org.apache.commons.math3.stat.descriptive.StatisticalSummary, org.apache.commons.math3.stat.descriptive.StatisticalSummary);
    descriptor: (Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.stat.descriptive.StatisticalSummary sampleStats1
        start local 1 // org.apache.commons.math3.stat.descriptive.StatisticalSummary sampleStats2
         0: .line 81
            getstatic org.apache.commons.math3.stat.inference.TestUtils.T_TEST:Lorg/apache/commons/math3/stat/inference/TTest;
            aload 0 /* sampleStats1 */
            aload 1 /* sampleStats2 */
            invokevirtual org.apache.commons.math3.stat.inference.TTest.homoscedasticT:(Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;)D
            dreturn
        end local 1 // org.apache.commons.math3.stat.descriptive.StatisticalSummary sampleStats2
        end local 0 // org.apache.commons.math3.stat.descriptive.StatisticalSummary sampleStats1
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0  sampleStats1  Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;
            0    1     1  sampleStats2  Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NumberIsTooSmallException
    MethodParameters:
              Name  Flags
      sampleStats1  final
      sampleStats2  final

  public static boolean homoscedasticTTest(double[], double[], double);
    descriptor: ([D[DD)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // double[] sample1
        start local 1 // double[] sample2
        start local 2 // double alpha
         0: .line 91
            getstatic org.apache.commons.math3.stat.inference.TestUtils.T_TEST:Lorg/apache/commons/math3/stat/inference/TTest;
            aload 0 /* sample1 */
            aload 1 /* sample2 */
            dload 2 /* alpha */
            invokevirtual org.apache.commons.math3.stat.inference.TTest.homoscedasticTTest:([D[DD)Z
            ireturn
        end local 2 // double alpha
        end local 1 // double[] sample2
        end local 0 // double[] sample1
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  sample1  [D
            0    1     1  sample2  [D
            0    1     2    alpha  D
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NumberIsTooSmallException, org.apache.commons.math3.exception.OutOfRangeException, org.apache.commons.math3.exception.MaxCountExceededException
    MethodParameters:
         Name  Flags
      sample1  final
      sample2  final
      alpha    final

  public static double homoscedasticTTest(double[], double[]);
    descriptor: ([D[D)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // double[] sample1
        start local 1 // double[] sample2
         0: .line 99
            getstatic org.apache.commons.math3.stat.inference.TestUtils.T_TEST:Lorg/apache/commons/math3/stat/inference/TTest;
            aload 0 /* sample1 */
            aload 1 /* sample2 */
            invokevirtual org.apache.commons.math3.stat.inference.TTest.homoscedasticTTest:([D[D)D
            dreturn
        end local 1 // double[] sample2
        end local 0 // double[] sample1
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  sample1  [D
            0    1     1  sample2  [D
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NumberIsTooSmallException, org.apache.commons.math3.exception.MaxCountExceededException
    MethodParameters:
         Name  Flags
      sample1  final
      sample2  final

  public static double homoscedasticTTest(org.apache.commons.math3.stat.descriptive.StatisticalSummary, org.apache.commons.math3.stat.descriptive.StatisticalSummary);
    descriptor: (Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.stat.descriptive.StatisticalSummary sampleStats1
        start local 1 // org.apache.commons.math3.stat.descriptive.StatisticalSummary sampleStats2
         0: .line 108
            getstatic org.apache.commons.math3.stat.inference.TestUtils.T_TEST:Lorg/apache/commons/math3/stat/inference/TTest;
            aload 0 /* sampleStats1 */
            aload 1 /* sampleStats2 */
            invokevirtual org.apache.commons.math3.stat.inference.TTest.homoscedasticTTest:(Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;)D
            dreturn
        end local 1 // org.apache.commons.math3.stat.descriptive.StatisticalSummary sampleStats2
        end local 0 // org.apache.commons.math3.stat.descriptive.StatisticalSummary sampleStats1
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0  sampleStats1  Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;
            0    1     1  sampleStats2  Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NumberIsTooSmallException, org.apache.commons.math3.exception.MaxCountExceededException
    MethodParameters:
              Name  Flags
      sampleStats1  final
      sampleStats2  final

  public static double pairedT(double[], double[]);
    descriptor: ([D[D)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // double[] sample1
        start local 1 // double[] sample2
         0: .line 117
            getstatic org.apache.commons.math3.stat.inference.TestUtils.T_TEST:Lorg/apache/commons/math3/stat/inference/TTest;
            aload 0 /* sample1 */
            aload 1 /* sample2 */
            invokevirtual org.apache.commons.math3.stat.inference.TTest.pairedT:([D[D)D
            dreturn
        end local 1 // double[] sample2
        end local 0 // double[] sample1
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  sample1  [D
            0    1     1  sample2  [D
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NoDataException, org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.NumberIsTooSmallException
    MethodParameters:
         Name  Flags
      sample1  final
      sample2  final

  public static boolean pairedTTest(double[], double[], double);
    descriptor: ([D[DD)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // double[] sample1
        start local 1 // double[] sample2
        start local 2 // double alpha
         0: .line 127
            getstatic org.apache.commons.math3.stat.inference.TestUtils.T_TEST:Lorg/apache/commons/math3/stat/inference/TTest;
            aload 0 /* sample1 */
            aload 1 /* sample2 */
            dload 2 /* alpha */
            invokevirtual org.apache.commons.math3.stat.inference.TTest.pairedTTest:([D[DD)Z
            ireturn
        end local 2 // double alpha
        end local 1 // double[] sample2
        end local 0 // double[] sample1
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  sample1  [D
            0    1     1  sample2  [D
            0    1     2    alpha  D
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NoDataException, org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.NumberIsTooSmallException, org.apache.commons.math3.exception.OutOfRangeException, org.apache.commons.math3.exception.MaxCountExceededException
    MethodParameters:
         Name  Flags
      sample1  final
      sample2  final
      alpha    final

  public static double pairedTTest(double[], double[]);
    descriptor: ([D[D)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // double[] sample1
        start local 1 // double[] sample2
         0: .line 136
            getstatic org.apache.commons.math3.stat.inference.TestUtils.T_TEST:Lorg/apache/commons/math3/stat/inference/TTest;
            aload 0 /* sample1 */
            aload 1 /* sample2 */
            invokevirtual org.apache.commons.math3.stat.inference.TTest.pairedTTest:([D[D)D
            dreturn
        end local 1 // double[] sample2
        end local 0 // double[] sample1
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  sample1  [D
            0    1     1  sample2  [D
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NoDataException, org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.NumberIsTooSmallException, org.apache.commons.math3.exception.MaxCountExceededException
    MethodParameters:
         Name  Flags
      sample1  final
      sample2  final

  public static double t(double, double[]);
    descriptor: (D[D)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // double mu
        start local 2 // double[] observed
         0: .line 144
            getstatic org.apache.commons.math3.stat.inference.TestUtils.T_TEST:Lorg/apache/commons/math3/stat/inference/TTest;
            dload 0 /* mu */
            aload 2 /* observed */
            invokevirtual org.apache.commons.math3.stat.inference.TTest.t:(D[D)D
            dreturn
        end local 2 // double[] observed
        end local 0 // double mu
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0        mu  D
            0    1     2  observed  [D
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NumberIsTooSmallException
    MethodParameters:
          Name  Flags
      mu        final
      observed  final

  public static double t(double, org.apache.commons.math3.stat.descriptive.StatisticalSummary);
    descriptor: (DLorg/apache/commons/math3/stat/descriptive/StatisticalSummary;)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // double mu
        start local 2 // org.apache.commons.math3.stat.descriptive.StatisticalSummary sampleStats
         0: .line 152
            getstatic org.apache.commons.math3.stat.inference.TestUtils.T_TEST:Lorg/apache/commons/math3/stat/inference/TTest;
            dload 0 /* mu */
            aload 2 /* sampleStats */
            invokevirtual org.apache.commons.math3.stat.inference.TTest.t:(DLorg/apache/commons/math3/stat/descriptive/StatisticalSummary;)D
            dreturn
        end local 2 // org.apache.commons.math3.stat.descriptive.StatisticalSummary sampleStats
        end local 0 // double mu
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0           mu  D
            0    1     2  sampleStats  Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NumberIsTooSmallException
    MethodParameters:
             Name  Flags
      mu           final
      sampleStats  final

  public static double t(double[], double[]);
    descriptor: ([D[D)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // double[] sample1
        start local 1 // double[] sample2
         0: .line 160
            getstatic org.apache.commons.math3.stat.inference.TestUtils.T_TEST:Lorg/apache/commons/math3/stat/inference/TTest;
            aload 0 /* sample1 */
            aload 1 /* sample2 */
            invokevirtual org.apache.commons.math3.stat.inference.TTest.t:([D[D)D
            dreturn
        end local 1 // double[] sample2
        end local 0 // double[] sample1
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  sample1  [D
            0    1     1  sample2  [D
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NumberIsTooSmallException
    MethodParameters:
         Name  Flags
      sample1  final
      sample2  final

  public static double t(org.apache.commons.math3.stat.descriptive.StatisticalSummary, org.apache.commons.math3.stat.descriptive.StatisticalSummary);
    descriptor: (Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.stat.descriptive.StatisticalSummary sampleStats1
        start local 1 // org.apache.commons.math3.stat.descriptive.StatisticalSummary sampleStats2
         0: .line 169
            getstatic org.apache.commons.math3.stat.inference.TestUtils.T_TEST:Lorg/apache/commons/math3/stat/inference/TTest;
            aload 0 /* sampleStats1 */
            aload 1 /* sampleStats2 */
            invokevirtual org.apache.commons.math3.stat.inference.TTest.t:(Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;)D
            dreturn
        end local 1 // org.apache.commons.math3.stat.descriptive.StatisticalSummary sampleStats2
        end local 0 // org.apache.commons.math3.stat.descriptive.StatisticalSummary sampleStats1
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0  sampleStats1  Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;
            0    1     1  sampleStats2  Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NumberIsTooSmallException
    MethodParameters:
              Name  Flags
      sampleStats1  final
      sampleStats2  final

  public static boolean tTest(double, double[], double);
    descriptor: (D[DD)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=5, args_size=3
        start local 0 // double mu
        start local 2 // double[] sample
        start local 3 // double alpha
         0: .line 178
            getstatic org.apache.commons.math3.stat.inference.TestUtils.T_TEST:Lorg/apache/commons/math3/stat/inference/TTest;
            dload 0 /* mu */
            aload 2 /* sample */
            dload 3 /* alpha */
            invokevirtual org.apache.commons.math3.stat.inference.TTest.tTest:(D[DD)Z
            ireturn
        end local 3 // double alpha
        end local 2 // double[] sample
        end local 0 // double mu
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0      mu  D
            0    1     2  sample  [D
            0    1     3   alpha  D
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NumberIsTooSmallException, org.apache.commons.math3.exception.OutOfRangeException, org.apache.commons.math3.exception.MaxCountExceededException
    MethodParameters:
        Name  Flags
      mu      final
      sample  final
      alpha   final

  public static double tTest(double, double[]);
    descriptor: (D[D)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // double mu
        start local 2 // double[] sample
         0: .line 187
            getstatic org.apache.commons.math3.stat.inference.TestUtils.T_TEST:Lorg/apache/commons/math3/stat/inference/TTest;
            dload 0 /* mu */
            aload 2 /* sample */
            invokevirtual org.apache.commons.math3.stat.inference.TTest.tTest:(D[D)D
            dreturn
        end local 2 // double[] sample
        end local 0 // double mu
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0      mu  D
            0    1     2  sample  [D
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NumberIsTooSmallException, org.apache.commons.math3.exception.MaxCountExceededException
    MethodParameters:
        Name  Flags
      mu      final
      sample  final

  public static boolean tTest(double, org.apache.commons.math3.stat.descriptive.StatisticalSummary, double);
    descriptor: (DLorg/apache/commons/math3/stat/descriptive/StatisticalSummary;D)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=5, args_size=3
        start local 0 // double mu
        start local 2 // org.apache.commons.math3.stat.descriptive.StatisticalSummary sampleStats
        start local 3 // double alpha
         0: .line 197
            getstatic org.apache.commons.math3.stat.inference.TestUtils.T_TEST:Lorg/apache/commons/math3/stat/inference/TTest;
            dload 0 /* mu */
            aload 2 /* sampleStats */
            dload 3 /* alpha */
            invokevirtual org.apache.commons.math3.stat.inference.TTest.tTest:(DLorg/apache/commons/math3/stat/descriptive/StatisticalSummary;D)Z
            ireturn
        end local 3 // double alpha
        end local 2 // org.apache.commons.math3.stat.descriptive.StatisticalSummary sampleStats
        end local 0 // double mu
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0           mu  D
            0    1     2  sampleStats  Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;
            0    1     3        alpha  D
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NumberIsTooSmallException, org.apache.commons.math3.exception.OutOfRangeException, org.apache.commons.math3.exception.MaxCountExceededException
    MethodParameters:
             Name  Flags
      mu           final
      sampleStats  final
      alpha        final

  public static double tTest(double, org.apache.commons.math3.stat.descriptive.StatisticalSummary);
    descriptor: (DLorg/apache/commons/math3/stat/descriptive/StatisticalSummary;)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // double mu
        start local 2 // org.apache.commons.math3.stat.descriptive.StatisticalSummary sampleStats
         0: .line 206
            getstatic org.apache.commons.math3.stat.inference.TestUtils.T_TEST:Lorg/apache/commons/math3/stat/inference/TTest;
            dload 0 /* mu */
            aload 2 /* sampleStats */
            invokevirtual org.apache.commons.math3.stat.inference.TTest.tTest:(DLorg/apache/commons/math3/stat/descriptive/StatisticalSummary;)D
            dreturn
        end local 2 // org.apache.commons.math3.stat.descriptive.StatisticalSummary sampleStats
        end local 0 // double mu
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0           mu  D
            0    1     2  sampleStats  Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NumberIsTooSmallException, org.apache.commons.math3.exception.MaxCountExceededException
    MethodParameters:
             Name  Flags
      mu           final
      sampleStats  final

  public static boolean tTest(double[], double[], double);
    descriptor: ([D[DD)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // double[] sample1
        start local 1 // double[] sample2
        start local 2 // double alpha
         0: .line 216
            getstatic org.apache.commons.math3.stat.inference.TestUtils.T_TEST:Lorg/apache/commons/math3/stat/inference/TTest;
            aload 0 /* sample1 */
            aload 1 /* sample2 */
            dload 2 /* alpha */
            invokevirtual org.apache.commons.math3.stat.inference.TTest.tTest:([D[DD)Z
            ireturn
        end local 2 // double alpha
        end local 1 // double[] sample2
        end local 0 // double[] sample1
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  sample1  [D
            0    1     1  sample2  [D
            0    1     2    alpha  D
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NumberIsTooSmallException, org.apache.commons.math3.exception.OutOfRangeException, org.apache.commons.math3.exception.MaxCountExceededException
    MethodParameters:
         Name  Flags
      sample1  final
      sample2  final
      alpha    final

  public static double tTest(double[], double[]);
    descriptor: ([D[D)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // double[] sample1
        start local 1 // double[] sample2
         0: .line 225
            getstatic org.apache.commons.math3.stat.inference.TestUtils.T_TEST:Lorg/apache/commons/math3/stat/inference/TTest;
            aload 0 /* sample1 */
            aload 1 /* sample2 */
            invokevirtual org.apache.commons.math3.stat.inference.TTest.tTest:([D[D)D
            dreturn
        end local 1 // double[] sample2
        end local 0 // double[] sample1
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  sample1  [D
            0    1     1  sample2  [D
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NumberIsTooSmallException, org.apache.commons.math3.exception.MaxCountExceededException
    MethodParameters:
         Name  Flags
      sample1  final
      sample2  final

  public static boolean tTest(org.apache.commons.math3.stat.descriptive.StatisticalSummary, org.apache.commons.math3.stat.descriptive.StatisticalSummary, double);
    descriptor: (Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;D)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.apache.commons.math3.stat.descriptive.StatisticalSummary sampleStats1
        start local 1 // org.apache.commons.math3.stat.descriptive.StatisticalSummary sampleStats2
        start local 2 // double alpha
         0: .line 236
            getstatic org.apache.commons.math3.stat.inference.TestUtils.T_TEST:Lorg/apache/commons/math3/stat/inference/TTest;
            aload 0 /* sampleStats1 */
            aload 1 /* sampleStats2 */
            dload 2 /* alpha */
            invokevirtual org.apache.commons.math3.stat.inference.TTest.tTest:(Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;D)Z
            ireturn
        end local 2 // double alpha
        end local 1 // org.apache.commons.math3.stat.descriptive.StatisticalSummary sampleStats2
        end local 0 // org.apache.commons.math3.stat.descriptive.StatisticalSummary sampleStats1
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0  sampleStats1  Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;
            0    1     1  sampleStats2  Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;
            0    1     2         alpha  D
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NumberIsTooSmallException, org.apache.commons.math3.exception.OutOfRangeException, org.apache.commons.math3.exception.MaxCountExceededException
    MethodParameters:
              Name  Flags
      sampleStats1  final
      sampleStats2  final
      alpha         final

  public static double tTest(org.apache.commons.math3.stat.descriptive.StatisticalSummary, org.apache.commons.math3.stat.descriptive.StatisticalSummary);
    descriptor: (Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.stat.descriptive.StatisticalSummary sampleStats1
        start local 1 // org.apache.commons.math3.stat.descriptive.StatisticalSummary sampleStats2
         0: .line 246
            getstatic org.apache.commons.math3.stat.inference.TestUtils.T_TEST:Lorg/apache/commons/math3/stat/inference/TTest;
            aload 0 /* sampleStats1 */
            aload 1 /* sampleStats2 */
            invokevirtual org.apache.commons.math3.stat.inference.TTest.tTest:(Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;)D
            dreturn
        end local 1 // org.apache.commons.math3.stat.descriptive.StatisticalSummary sampleStats2
        end local 0 // org.apache.commons.math3.stat.descriptive.StatisticalSummary sampleStats1
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0  sampleStats1  Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;
            0    1     1  sampleStats2  Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NumberIsTooSmallException, org.apache.commons.math3.exception.MaxCountExceededException
    MethodParameters:
              Name  Flags
      sampleStats1  final
      sampleStats2  final

  public static double chiSquare(double[], long[]);
    descriptor: ([D[J)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // double[] expected
        start local 1 // long[] observed
         0: .line 255
            getstatic org.apache.commons.math3.stat.inference.TestUtils.CHI_SQUARE_TEST:Lorg/apache/commons/math3/stat/inference/ChiSquareTest;
            aload 0 /* expected */
            aload 1 /* observed */
            invokevirtual org.apache.commons.math3.stat.inference.ChiSquareTest.chiSquare:([D[J)D
            dreturn
        end local 1 // long[] observed
        end local 0 // double[] expected
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  expected  [D
            0    1     1  observed  [J
    Exceptions:
      throws org.apache.commons.math3.exception.NotPositiveException, org.apache.commons.math3.exception.NotStrictlyPositiveException, org.apache.commons.math3.exception.DimensionMismatchException
    MethodParameters:
          Name  Flags
      expected  final
      observed  final

  public static double chiSquare(long[][]);
    descriptor: ([[J)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // long[][] counts
         0: .line 264
            getstatic org.apache.commons.math3.stat.inference.TestUtils.CHI_SQUARE_TEST:Lorg/apache/commons/math3/stat/inference/ChiSquareTest;
            aload 0 /* counts */
            invokevirtual org.apache.commons.math3.stat.inference.ChiSquareTest.chiSquare:([[J)D
            dreturn
        end local 0 // long[][] counts
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0  counts  [[J
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NotPositiveException, org.apache.commons.math3.exception.DimensionMismatchException
    MethodParameters:
        Name  Flags
      counts  final

  public static boolean chiSquareTest(double[], long[], double);
    descriptor: ([D[JD)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // double[] expected
        start local 1 // long[] observed
        start local 2 // double alpha
         0: .line 274
            getstatic org.apache.commons.math3.stat.inference.TestUtils.CHI_SQUARE_TEST:Lorg/apache/commons/math3/stat/inference/ChiSquareTest;
            aload 0 /* expected */
            aload 1 /* observed */
            dload 2 /* alpha */
            invokevirtual org.apache.commons.math3.stat.inference.ChiSquareTest.chiSquareTest:([D[JD)Z
            ireturn
        end local 2 // double alpha
        end local 1 // long[] observed
        end local 0 // double[] expected
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  expected  [D
            0    1     1  observed  [J
            0    1     2     alpha  D
    Exceptions:
      throws org.apache.commons.math3.exception.NotPositiveException, org.apache.commons.math3.exception.NotStrictlyPositiveException, org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.OutOfRangeException, org.apache.commons.math3.exception.MaxCountExceededException
    MethodParameters:
          Name  Flags
      expected  final
      observed  final
      alpha     final

  public static double chiSquareTest(double[], long[]);
    descriptor: ([D[J)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // double[] expected
        start local 1 // long[] observed
         0: .line 283
            getstatic org.apache.commons.math3.stat.inference.TestUtils.CHI_SQUARE_TEST:Lorg/apache/commons/math3/stat/inference/ChiSquareTest;
            aload 0 /* expected */
            aload 1 /* observed */
            invokevirtual org.apache.commons.math3.stat.inference.ChiSquareTest.chiSquareTest:([D[J)D
            dreturn
        end local 1 // long[] observed
        end local 0 // double[] expected
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  expected  [D
            0    1     1  observed  [J
    Exceptions:
      throws org.apache.commons.math3.exception.NotPositiveException, org.apache.commons.math3.exception.NotStrictlyPositiveException, org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.MaxCountExceededException
    MethodParameters:
          Name  Flags
      expected  final
      observed  final

  public static boolean chiSquareTest(long[][], double);
    descriptor: ([[JD)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // long[][] counts
        start local 1 // double alpha
         0: .line 292
            getstatic org.apache.commons.math3.stat.inference.TestUtils.CHI_SQUARE_TEST:Lorg/apache/commons/math3/stat/inference/ChiSquareTest;
            aload 0 /* counts */
            dload 1 /* alpha */
            invokevirtual org.apache.commons.math3.stat.inference.ChiSquareTest.chiSquareTest:([[JD)Z
            ireturn
        end local 1 // double alpha
        end local 0 // long[][] counts
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0  counts  [[J
            0    1     1   alpha  D
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.NotPositiveException, org.apache.commons.math3.exception.OutOfRangeException, org.apache.commons.math3.exception.MaxCountExceededException
    MethodParameters:
        Name  Flags
      counts  final
      alpha   final

  public static double chiSquareTest(long[][]);
    descriptor: ([[J)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // long[][] counts
         0: .line 301
            getstatic org.apache.commons.math3.stat.inference.TestUtils.CHI_SQUARE_TEST:Lorg/apache/commons/math3/stat/inference/ChiSquareTest;
            aload 0 /* counts */
            invokevirtual org.apache.commons.math3.stat.inference.ChiSquareTest.chiSquareTest:([[J)D
            dreturn
        end local 0 // long[][] counts
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0  counts  [[J
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.NotPositiveException, org.apache.commons.math3.exception.MaxCountExceededException
    MethodParameters:
        Name  Flags
      counts  final

  public static double chiSquareDataSetsComparison(long[], long[]);
    descriptor: ([J[J)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // long[] observed1
        start local 1 // long[] observed2
         0: .line 312
            getstatic org.apache.commons.math3.stat.inference.TestUtils.CHI_SQUARE_TEST:Lorg/apache/commons/math3/stat/inference/ChiSquareTest;
            aload 0 /* observed1 */
            aload 1 /* observed2 */
            invokevirtual org.apache.commons.math3.stat.inference.ChiSquareTest.chiSquareDataSetsComparison:([J[J)D
            dreturn
        end local 1 // long[] observed2
        end local 0 // long[] observed1
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0  observed1  [J
            0    1     1  observed2  [J
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.NotPositiveException, org.apache.commons.math3.exception.ZeroException
    MethodParameters:
           Name  Flags
      observed1  final
      observed2  final

  public static double chiSquareTestDataSetsComparison(long[], long[]);
    descriptor: ([J[J)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // long[] observed1
        start local 1 // long[] observed2
         0: .line 324
            getstatic org.apache.commons.math3.stat.inference.TestUtils.CHI_SQUARE_TEST:Lorg/apache/commons/math3/stat/inference/ChiSquareTest;
            aload 0 /* observed1 */
            aload 1 /* observed2 */
            invokevirtual org.apache.commons.math3.stat.inference.ChiSquareTest.chiSquareTestDataSetsComparison:([J[J)D
            dreturn
        end local 1 // long[] observed2
        end local 0 // long[] observed1
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0  observed1  [J
            0    1     1  observed2  [J
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.NotPositiveException, org.apache.commons.math3.exception.ZeroException, org.apache.commons.math3.exception.MaxCountExceededException
    MethodParameters:
           Name  Flags
      observed1  final
      observed2  final

  public static boolean chiSquareTestDataSetsComparison(long[], long[], double);
    descriptor: ([J[JD)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // long[] observed1
        start local 1 // long[] observed2
        start local 2 // double alpha
         0: .line 337
            getstatic org.apache.commons.math3.stat.inference.TestUtils.CHI_SQUARE_TEST:Lorg/apache/commons/math3/stat/inference/ChiSquareTest;
            aload 0 /* observed1 */
            aload 1 /* observed2 */
            dload 2 /* alpha */
            invokevirtual org.apache.commons.math3.stat.inference.ChiSquareTest.chiSquareTestDataSetsComparison:([J[JD)Z
            ireturn
        end local 2 // double alpha
        end local 1 // long[] observed2
        end local 0 // long[] observed1
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0  observed1  [J
            0    1     1  observed2  [J
            0    1     2      alpha  D
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.NotPositiveException, org.apache.commons.math3.exception.ZeroException, org.apache.commons.math3.exception.OutOfRangeException, org.apache.commons.math3.exception.MaxCountExceededException
    MethodParameters:
           Name  Flags
      observed1  final
      observed2  final
      alpha      final

  public static double oneWayAnovaFValue(java.util.Collection<double[]>);
    descriptor: (Ljava/util/Collection;)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.util.Collection categoryData
         0: .line 347
            getstatic org.apache.commons.math3.stat.inference.TestUtils.ONE_WAY_ANANOVA:Lorg/apache/commons/math3/stat/inference/OneWayAnova;
            aload 0 /* categoryData */
            invokevirtual org.apache.commons.math3.stat.inference.OneWayAnova.anovaFValue:(Ljava/util/Collection;)D
            dreturn
        end local 0 // java.util.Collection categoryData
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0  categoryData  Ljava/util/Collection<[D>;
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.DimensionMismatchException
    Signature: (Ljava/util/Collection<[D>;)D
    MethodParameters:
              Name  Flags
      categoryData  final

  public static double oneWayAnovaPValue(java.util.Collection<double[]>);
    descriptor: (Ljava/util/Collection;)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.util.Collection categoryData
         0: .line 358
            getstatic org.apache.commons.math3.stat.inference.TestUtils.ONE_WAY_ANANOVA:Lorg/apache/commons/math3/stat/inference/OneWayAnova;
            aload 0 /* categoryData */
            invokevirtual org.apache.commons.math3.stat.inference.OneWayAnova.anovaPValue:(Ljava/util/Collection;)D
            dreturn
        end local 0 // java.util.Collection categoryData
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0  categoryData  Ljava/util/Collection<[D>;
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.ConvergenceException, org.apache.commons.math3.exception.MaxCountExceededException
    Signature: (Ljava/util/Collection<[D>;)D
    MethodParameters:
              Name  Flags
      categoryData  final

  public static boolean oneWayAnovaTest(java.util.Collection<double[]>, );
    descriptor: (Ljava/util/Collection;D)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // java.util.Collection categoryData
        start local 1 // double alpha
         0: .line 370
            getstatic org.apache.commons.math3.stat.inference.TestUtils.ONE_WAY_ANANOVA:Lorg/apache/commons/math3/stat/inference/OneWayAnova;
            aload 0 /* categoryData */
            dload 1 /* alpha */
            invokevirtual org.apache.commons.math3.stat.inference.OneWayAnova.anovaTest:(Ljava/util/Collection;D)Z
            ireturn
        end local 1 // double alpha
        end local 0 // java.util.Collection categoryData
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0  categoryData  Ljava/util/Collection<[D>;
            0    1     1         alpha  D
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.OutOfRangeException, org.apache.commons.math3.exception.ConvergenceException, org.apache.commons.math3.exception.MaxCountExceededException
    Signature: (Ljava/util/Collection<[D>;D)Z
    MethodParameters:
              Name  Flags
      categoryData  final
      alpha         final

  public static double g(double[], long[]);
    descriptor: ([D[J)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // double[] expected
        start local 1 // long[] observed
         0: .line 380
            getstatic org.apache.commons.math3.stat.inference.TestUtils.G_TEST:Lorg/apache/commons/math3/stat/inference/GTest;
            aload 0 /* expected */
            aload 1 /* observed */
            invokevirtual org.apache.commons.math3.stat.inference.GTest.g:([D[J)D
            dreturn
        end local 1 // long[] observed
        end local 0 // double[] expected
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  expected  [D
            0    1     1  observed  [J
    Exceptions:
      throws org.apache.commons.math3.exception.NotPositiveException, org.apache.commons.math3.exception.NotStrictlyPositiveException, org.apache.commons.math3.exception.DimensionMismatchException
    MethodParameters:
          Name  Flags
      expected  final
      observed  final

  public static double gTest(double[], long[]);
    descriptor: ([D[J)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // double[] expected
        start local 1 // long[] observed
         0: .line 390
            getstatic org.apache.commons.math3.stat.inference.TestUtils.G_TEST:Lorg/apache/commons/math3/stat/inference/GTest;
            aload 0 /* expected */
            aload 1 /* observed */
            invokevirtual org.apache.commons.math3.stat.inference.GTest.gTest:([D[J)D
            dreturn
        end local 1 // long[] observed
        end local 0 // double[] expected
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  expected  [D
            0    1     1  observed  [J
    Exceptions:
      throws org.apache.commons.math3.exception.NotPositiveException, org.apache.commons.math3.exception.NotStrictlyPositiveException, org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.MaxCountExceededException
    MethodParameters:
          Name  Flags
      expected  final
      observed  final

  public static double gTestIntrinsic(double[], long[]);
    descriptor: ([D[J)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // double[] expected
        start local 1 // long[] observed
         0: .line 400
            getstatic org.apache.commons.math3.stat.inference.TestUtils.G_TEST:Lorg/apache/commons/math3/stat/inference/GTest;
            aload 0 /* expected */
            aload 1 /* observed */
            invokevirtual org.apache.commons.math3.stat.inference.GTest.gTestIntrinsic:([D[J)D
            dreturn
        end local 1 // long[] observed
        end local 0 // double[] expected
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  expected  [D
            0    1     1  observed  [J
    Exceptions:
      throws org.apache.commons.math3.exception.NotPositiveException, org.apache.commons.math3.exception.NotStrictlyPositiveException, org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.MaxCountExceededException
    MethodParameters:
          Name  Flags
      expected  final
      observed  final

  public static boolean gTest(double[], long[], double);
    descriptor: ([D[JD)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // double[] expected
        start local 1 // long[] observed
        start local 2 // double alpha
         0: .line 411
            getstatic org.apache.commons.math3.stat.inference.TestUtils.G_TEST:Lorg/apache/commons/math3/stat/inference/GTest;
            aload 0 /* expected */
            aload 1 /* observed */
            dload 2 /* alpha */
            invokevirtual org.apache.commons.math3.stat.inference.GTest.gTest:([D[JD)Z
            ireturn
        end local 2 // double alpha
        end local 1 // long[] observed
        end local 0 // double[] expected
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  expected  [D
            0    1     1  observed  [J
            0    1     2     alpha  D
    Exceptions:
      throws org.apache.commons.math3.exception.NotPositiveException, org.apache.commons.math3.exception.NotStrictlyPositiveException, org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.OutOfRangeException, org.apache.commons.math3.exception.MaxCountExceededException
    MethodParameters:
          Name  Flags
      expected  final
      observed  final
      alpha     final

  public static double gDataSetsComparison(long[], long[]);
    descriptor: ([J[J)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // long[] observed1
        start local 1 // long[] observed2
         0: .line 421
            getstatic org.apache.commons.math3.stat.inference.TestUtils.G_TEST:Lorg/apache/commons/math3/stat/inference/GTest;
            aload 0 /* observed1 */
            aload 1 /* observed2 */
            invokevirtual org.apache.commons.math3.stat.inference.GTest.gDataSetsComparison:([J[J)D
            dreturn
        end local 1 // long[] observed2
        end local 0 // long[] observed1
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0  observed1  [J
            0    1     1  observed2  [J
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.NotPositiveException, org.apache.commons.math3.exception.ZeroException
    MethodParameters:
           Name  Flags
      observed1  final
      observed2  final

  public static double rootLogLikelihoodRatio(long, long, long, long);
    descriptor: (JJJJ)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=9, locals=8, args_size=4
        start local 0 // long k11
        start local 2 // long k12
        start local 4 // long k21
        start local 6 // long k22
         0: .line 430
            getstatic org.apache.commons.math3.stat.inference.TestUtils.G_TEST:Lorg/apache/commons/math3/stat/inference/GTest;
            lload 0 /* k11 */
            lload 2 /* k12 */
            lload 4 /* k21 */
            lload 6 /* k22 */
            invokevirtual org.apache.commons.math3.stat.inference.GTest.rootLogLikelihoodRatio:(JJJJ)D
            dreturn
        end local 6 // long k22
        end local 4 // long k21
        end local 2 // long k12
        end local 0 // long k11
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   k11  J
            0    1     2   k12  J
            0    1     4   k21  J
            0    1     6   k22  J
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.NotPositiveException, org.apache.commons.math3.exception.ZeroException
    MethodParameters:
      Name  Flags
      k11   final
      k12   final
      k21   final
      k22   final

  public static double gTestDataSetsComparison(long[], long[]);
    descriptor: ([J[J)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // long[] observed1
        start local 1 // long[] observed2
         0: .line 442
            getstatic org.apache.commons.math3.stat.inference.TestUtils.G_TEST:Lorg/apache/commons/math3/stat/inference/GTest;
            aload 0 /* observed1 */
            aload 1 /* observed2 */
            invokevirtual org.apache.commons.math3.stat.inference.GTest.gTestDataSetsComparison:([J[J)D
            dreturn
        end local 1 // long[] observed2
        end local 0 // long[] observed1
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0  observed1  [J
            0    1     1  observed2  [J
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.NotPositiveException, org.apache.commons.math3.exception.ZeroException, org.apache.commons.math3.exception.MaxCountExceededException
    MethodParameters:
           Name  Flags
      observed1  final
      observed2  final

  public static boolean gTestDataSetsComparison(long[], long[], double);
    descriptor: ([J[JD)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // long[] observed1
        start local 1 // long[] observed2
        start local 2 // double alpha
         0: .line 454
            getstatic org.apache.commons.math3.stat.inference.TestUtils.G_TEST:Lorg/apache/commons/math3/stat/inference/GTest;
            aload 0 /* observed1 */
            aload 1 /* observed2 */
            dload 2 /* alpha */
            invokevirtual org.apache.commons.math3.stat.inference.GTest.gTestDataSetsComparison:([J[JD)Z
            ireturn
        end local 2 // double alpha
        end local 1 // long[] observed2
        end local 0 // long[] observed1
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0  observed1  [J
            0    1     1  observed2  [J
            0    1     2      alpha  D
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.NotPositiveException, org.apache.commons.math3.exception.ZeroException, org.apache.commons.math3.exception.OutOfRangeException, org.apache.commons.math3.exception.MaxCountExceededException
    MethodParameters:
           Name  Flags
      observed1  final
      observed2  final
      alpha      final

  public static double kolmogorovSmirnovStatistic(org.apache.commons.math3.distribution.RealDistribution, double[]);
    descriptor: (Lorg/apache/commons/math3/distribution/RealDistribution;[D)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.distribution.RealDistribution dist
        start local 1 // double[] data
         0: .line 463
            getstatic org.apache.commons.math3.stat.inference.TestUtils.KS_TEST:Lorg/apache/commons/math3/stat/inference/KolmogorovSmirnovTest;
            aload 0 /* dist */
            aload 1 /* data */
            invokevirtual org.apache.commons.math3.stat.inference.KolmogorovSmirnovTest.kolmogorovSmirnovStatistic:(Lorg/apache/commons/math3/distribution/RealDistribution;[D)D
            dreturn
        end local 1 // double[] data
        end local 0 // org.apache.commons.math3.distribution.RealDistribution dist
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  dist  Lorg/apache/commons/math3/distribution/RealDistribution;
            0    1     1  data  [D
    Exceptions:
      throws org.apache.commons.math3.exception.InsufficientDataException, org.apache.commons.math3.exception.NullArgumentException
    MethodParameters:
      Name  Flags
      dist  
      data  

  public static double kolmogorovSmirnovTest(org.apache.commons.math3.distribution.RealDistribution, double[]);
    descriptor: (Lorg/apache/commons/math3/distribution/RealDistribution;[D)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.distribution.RealDistribution dist
        start local 1 // double[] data
         0: .line 472
            getstatic org.apache.commons.math3.stat.inference.TestUtils.KS_TEST:Lorg/apache/commons/math3/stat/inference/KolmogorovSmirnovTest;
            aload 0 /* dist */
            aload 1 /* data */
            invokevirtual org.apache.commons.math3.stat.inference.KolmogorovSmirnovTest.kolmogorovSmirnovTest:(Lorg/apache/commons/math3/distribution/RealDistribution;[D)D
            dreturn
        end local 1 // double[] data
        end local 0 // org.apache.commons.math3.distribution.RealDistribution dist
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  dist  Lorg/apache/commons/math3/distribution/RealDistribution;
            0    1     1  data  [D
    Exceptions:
      throws org.apache.commons.math3.exception.InsufficientDataException, org.apache.commons.math3.exception.NullArgumentException
    MethodParameters:
      Name  Flags
      dist  
      data  

  public static double kolmogorovSmirnovTest(org.apache.commons.math3.distribution.RealDistribution, double[], boolean);
    descriptor: (Lorg/apache/commons/math3/distribution/RealDistribution;[DZ)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.apache.commons.math3.distribution.RealDistribution dist
        start local 1 // double[] data
        start local 2 // boolean strict
         0: .line 481
            getstatic org.apache.commons.math3.stat.inference.TestUtils.KS_TEST:Lorg/apache/commons/math3/stat/inference/KolmogorovSmirnovTest;
            aload 0 /* dist */
            aload 1 /* data */
            iload 2 /* strict */
            invokevirtual org.apache.commons.math3.stat.inference.KolmogorovSmirnovTest.kolmogorovSmirnovTest:(Lorg/apache/commons/math3/distribution/RealDistribution;[DZ)D
            dreturn
        end local 2 // boolean strict
        end local 1 // double[] data
        end local 0 // org.apache.commons.math3.distribution.RealDistribution dist
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    dist  Lorg/apache/commons/math3/distribution/RealDistribution;
            0    1     1    data  [D
            0    1     2  strict  Z
    Exceptions:
      throws org.apache.commons.math3.exception.InsufficientDataException, org.apache.commons.math3.exception.NullArgumentException
    MethodParameters:
        Name  Flags
      dist    
      data    
      strict  

  public static boolean kolmogorovSmirnovTest(org.apache.commons.math3.distribution.RealDistribution, double[], double);
    descriptor: (Lorg/apache/commons/math3/distribution/RealDistribution;[DD)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.apache.commons.math3.distribution.RealDistribution dist
        start local 1 // double[] data
        start local 2 // double alpha
         0: .line 490
            getstatic org.apache.commons.math3.stat.inference.TestUtils.KS_TEST:Lorg/apache/commons/math3/stat/inference/KolmogorovSmirnovTest;
            aload 0 /* dist */
            aload 1 /* data */
            dload 2 /* alpha */
            invokevirtual org.apache.commons.math3.stat.inference.KolmogorovSmirnovTest.kolmogorovSmirnovTest:(Lorg/apache/commons/math3/distribution/RealDistribution;[DD)Z
            ireturn
        end local 2 // double alpha
        end local 1 // double[] data
        end local 0 // org.apache.commons.math3.distribution.RealDistribution dist
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   dist  Lorg/apache/commons/math3/distribution/RealDistribution;
            0    1     1   data  [D
            0    1     2  alpha  D
    Exceptions:
      throws org.apache.commons.math3.exception.InsufficientDataException, org.apache.commons.math3.exception.NullArgumentException
    MethodParameters:
       Name  Flags
      dist   
      data   
      alpha  

  public static double kolmogorovSmirnovStatistic(double[], double[]);
    descriptor: ([D[D)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // double[] x
        start local 1 // double[] y
         0: .line 499
            getstatic org.apache.commons.math3.stat.inference.TestUtils.KS_TEST:Lorg/apache/commons/math3/stat/inference/KolmogorovSmirnovTest;
            aload 0 /* x */
            aload 1 /* y */
            invokevirtual org.apache.commons.math3.stat.inference.KolmogorovSmirnovTest.kolmogorovSmirnovStatistic:([D[D)D
            dreturn
        end local 1 // double[] y
        end local 0 // double[] x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     x  [D
            0    1     1     y  [D
    Exceptions:
      throws org.apache.commons.math3.exception.InsufficientDataException, org.apache.commons.math3.exception.NullArgumentException
    MethodParameters:
      Name  Flags
      x     
      y     

  public static double kolmogorovSmirnovTest(double[], double[]);
    descriptor: ([D[D)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // double[] x
        start local 1 // double[] y
         0: .line 508
            getstatic org.apache.commons.math3.stat.inference.TestUtils.KS_TEST:Lorg/apache/commons/math3/stat/inference/KolmogorovSmirnovTest;
            aload 0 /* x */
            aload 1 /* y */
            invokevirtual org.apache.commons.math3.stat.inference.KolmogorovSmirnovTest.kolmogorovSmirnovTest:([D[D)D
            dreturn
        end local 1 // double[] y
        end local 0 // double[] x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     x  [D
            0    1     1     y  [D
    Exceptions:
      throws org.apache.commons.math3.exception.InsufficientDataException, org.apache.commons.math3.exception.NullArgumentException
    MethodParameters:
      Name  Flags
      x     
      y     

  public static double kolmogorovSmirnovTest(double[], double[], boolean);
    descriptor: ([D[DZ)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // double[] x
        start local 1 // double[] y
        start local 2 // boolean strict
         0: .line 517
            getstatic org.apache.commons.math3.stat.inference.TestUtils.KS_TEST:Lorg/apache/commons/math3/stat/inference/KolmogorovSmirnovTest;
            aload 0 /* x */
            aload 1 /* y */
            iload 2 /* strict */
            invokevirtual org.apache.commons.math3.stat.inference.KolmogorovSmirnovTest.kolmogorovSmirnovTest:([D[DZ)D
            dreturn
        end local 2 // boolean strict
        end local 1 // double[] y
        end local 0 // double[] x
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0       x  [D
            0    1     1       y  [D
            0    1     2  strict  Z
    Exceptions:
      throws org.apache.commons.math3.exception.InsufficientDataException, org.apache.commons.math3.exception.NullArgumentException
    MethodParameters:
        Name  Flags
      x       
      y       
      strict  

  public static double exactP(double, int, int, boolean);
    descriptor: (DIIZ)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=5, args_size=4
        start local 0 // double d
        start local 2 // int m
        start local 3 // int n
        start local 4 // boolean strict
         0: .line 525
            getstatic org.apache.commons.math3.stat.inference.TestUtils.KS_TEST:Lorg/apache/commons/math3/stat/inference/KolmogorovSmirnovTest;
            dload 0 /* d */
            iload 3 /* n */
            iload 2 /* m */
            iload 4 /* strict */
            invokevirtual org.apache.commons.math3.stat.inference.KolmogorovSmirnovTest.exactP:(DIIZ)D
            dreturn
        end local 4 // boolean strict
        end local 3 // int n
        end local 2 // int m
        end local 0 // double d
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0       d  D
            0    1     2       m  I
            0    1     3       n  I
            0    1     4  strict  Z
    MethodParameters:
        Name  Flags
      d       
      m       
      n       
      strict  

  public static double approximateP(double, int, int);
    descriptor: (DII)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // double d
        start local 2 // int n
        start local 3 // int m
         0: .line 533
            getstatic org.apache.commons.math3.stat.inference.TestUtils.KS_TEST:Lorg/apache/commons/math3/stat/inference/KolmogorovSmirnovTest;
            dload 0 /* d */
            iload 2 /* n */
            iload 3 /* m */
            invokevirtual org.apache.commons.math3.stat.inference.KolmogorovSmirnovTest.approximateP:(DII)D
            dreturn
        end local 3 // int m
        end local 2 // int n
        end local 0 // double d
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     d  D
            0    1     2     n  I
            0    1     3     m  I
    MethodParameters:
      Name  Flags
      d     
      n     
      m     

  public static double monteCarloP(double, int, int, boolean, int);
    descriptor: (DIIZI)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=7, locals=6, args_size=5
        start local 0 // double d
        start local 2 // int n
        start local 3 // int m
        start local 4 // boolean strict
        start local 5 // int iterations
         0: .line 541
            getstatic org.apache.commons.math3.stat.inference.TestUtils.KS_TEST:Lorg/apache/commons/math3/stat/inference/KolmogorovSmirnovTest;
            dload 0 /* d */
            iload 2 /* n */
            iload 3 /* m */
            iload 4 /* strict */
            iload 5 /* iterations */
            invokevirtual org.apache.commons.math3.stat.inference.KolmogorovSmirnovTest.monteCarloP:(DIIZI)D
            dreturn
        end local 5 // int iterations
        end local 4 // boolean strict
        end local 3 // int m
        end local 2 // int n
        end local 0 // double d
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0           d  D
            0    1     2           n  I
            0    1     3           m  I
            0    1     4      strict  Z
            0    1     5  iterations  I
    MethodParameters:
            Name  Flags
      d           
      n           
      m           
      strict      
      iterations  
}
SourceFile: "TestUtils.java"