public class org.apache.commons.math3.stat.ranking.NaturalRanking implements org.apache.commons.math3.stat.ranking.RankingAlgorithm
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.stat.ranking.NaturalRanking
  super_class: java.lang.Object
{
  public static final org.apache.commons.math3.stat.ranking.NaNStrategy DEFAULT_NAN_STRATEGY;
    descriptor: Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final org.apache.commons.math3.stat.ranking.TiesStrategy DEFAULT_TIES_STRATEGY;
    descriptor: Lorg/apache/commons/math3/stat/ranking/TiesStrategy;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  private final org.apache.commons.math3.stat.ranking.NaNStrategy nanStrategy;
    descriptor: Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.apache.commons.math3.stat.ranking.TiesStrategy tiesStrategy;
    descriptor: Lorg/apache/commons/math3/stat/ranking/TiesStrategy;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.apache.commons.math3.random.RandomDataGenerator randomData;
    descriptor: Lorg/apache/commons/math3/random/RandomDataGenerator;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private static volatile int[] $SWITCH_TABLE$org$apache$commons$math3$stat$ranking$NaNStrategy;
    descriptor: [I
    flags: (0x104a) ACC_PRIVATE, ACC_STATIC, ACC_VOLATILE, ACC_SYNTHETIC

  private static volatile int[] $SWITCH_TABLE$org$apache$commons$math3$stat$ranking$TiesStrategy;
    descriptor: [I
    flags: (0x104a) ACC_PRIVATE, ACC_STATIC, ACC_VOLATILE, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 73
            getstatic org.apache.commons.math3.stat.ranking.NaNStrategy.FAILED:Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
            putstatic org.apache.commons.math3.stat.ranking.NaturalRanking.DEFAULT_NAN_STRATEGY:Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
         1: .line 76
            getstatic org.apache.commons.math3.stat.ranking.TiesStrategy.AVERAGE:Lorg/apache/commons/math3/stat/ranking/TiesStrategy;
            putstatic org.apache.commons.math3.stat.ranking.NaturalRanking.DEFAULT_TIES_STRATEGY:Lorg/apache/commons/math3/stat/ranking/TiesStrategy;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
         0: .line 91
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 92
            aload 0 /* this */
            getstatic org.apache.commons.math3.stat.ranking.NaturalRanking.DEFAULT_TIES_STRATEGY:Lorg/apache/commons/math3/stat/ranking/TiesStrategy;
            putfield org.apache.commons.math3.stat.ranking.NaturalRanking.tiesStrategy:Lorg/apache/commons/math3/stat/ranking/TiesStrategy;
         2: .line 93
            aload 0 /* this */
            getstatic org.apache.commons.math3.stat.ranking.NaturalRanking.DEFAULT_NAN_STRATEGY:Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
            putfield org.apache.commons.math3.stat.ranking.NaturalRanking.nanStrategy:Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
         3: .line 94
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.math3.stat.ranking.NaturalRanking.randomData:Lorg/apache/commons/math3/random/RandomDataGenerator;
         4: .line 95
            return
        end local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/math3/stat/ranking/NaturalRanking;

  public void <init>(org.apache.commons.math3.stat.ranking.TiesStrategy);
    descriptor: (Lorg/apache/commons/math3/stat/ranking/TiesStrategy;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
        start local 1 // org.apache.commons.math3.stat.ranking.TiesStrategy tiesStrategy
         0: .line 103
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 104
            aload 0 /* this */
            aload 1 /* tiesStrategy */
            putfield org.apache.commons.math3.stat.ranking.NaturalRanking.tiesStrategy:Lorg/apache/commons/math3/stat/ranking/TiesStrategy;
         2: .line 105
            aload 0 /* this */
            getstatic org.apache.commons.math3.stat.ranking.NaturalRanking.DEFAULT_NAN_STRATEGY:Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
            putfield org.apache.commons.math3.stat.ranking.NaturalRanking.nanStrategy:Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
         3: .line 106
            aload 0 /* this */
            new org.apache.commons.math3.random.RandomDataGenerator
            dup
            invokespecial org.apache.commons.math3.random.RandomDataGenerator.<init>:()V
            putfield org.apache.commons.math3.stat.ranking.NaturalRanking.randomData:Lorg/apache/commons/math3/random/RandomDataGenerator;
         4: .line 107
            return
        end local 1 // org.apache.commons.math3.stat.ranking.TiesStrategy tiesStrategy
        end local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    5     0          this  Lorg/apache/commons/math3/stat/ranking/NaturalRanking;
            0    5     1  tiesStrategy  Lorg/apache/commons/math3/stat/ranking/TiesStrategy;
    MethodParameters:
              Name  Flags
      tiesStrategy  

  public void <init>(org.apache.commons.math3.stat.ranking.NaNStrategy);
    descriptor: (Lorg/apache/commons/math3/stat/ranking/NaNStrategy;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
        start local 1 // org.apache.commons.math3.stat.ranking.NaNStrategy nanStrategy
         0: .line 115
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 116
            aload 0 /* this */
            aload 1 /* nanStrategy */
            putfield org.apache.commons.math3.stat.ranking.NaturalRanking.nanStrategy:Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
         2: .line 117
            aload 0 /* this */
            getstatic org.apache.commons.math3.stat.ranking.NaturalRanking.DEFAULT_TIES_STRATEGY:Lorg/apache/commons/math3/stat/ranking/TiesStrategy;
            putfield org.apache.commons.math3.stat.ranking.NaturalRanking.tiesStrategy:Lorg/apache/commons/math3/stat/ranking/TiesStrategy;
         3: .line 118
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.math3.stat.ranking.NaturalRanking.randomData:Lorg/apache/commons/math3/random/RandomDataGenerator;
         4: .line 119
            return
        end local 1 // org.apache.commons.math3.stat.ranking.NaNStrategy nanStrategy
        end local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lorg/apache/commons/math3/stat/ranking/NaturalRanking;
            0    5     1  nanStrategy  Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
    MethodParameters:
             Name  Flags
      nanStrategy  

  public void <init>(org.apache.commons.math3.stat.ranking.NaNStrategy, org.apache.commons.math3.stat.ranking.TiesStrategy);
    descriptor: (Lorg/apache/commons/math3/stat/ranking/NaNStrategy;Lorg/apache/commons/math3/stat/ranking/TiesStrategy;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
        start local 1 // org.apache.commons.math3.stat.ranking.NaNStrategy nanStrategy
        start local 2 // org.apache.commons.math3.stat.ranking.TiesStrategy tiesStrategy
         0: .line 128
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 129
            aload 0 /* this */
            aload 1 /* nanStrategy */
            putfield org.apache.commons.math3.stat.ranking.NaturalRanking.nanStrategy:Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
         2: .line 130
            aload 0 /* this */
            aload 2 /* tiesStrategy */
            putfield org.apache.commons.math3.stat.ranking.NaturalRanking.tiesStrategy:Lorg/apache/commons/math3/stat/ranking/TiesStrategy;
         3: .line 131
            aload 0 /* this */
            new org.apache.commons.math3.random.RandomDataGenerator
            dup
            invokespecial org.apache.commons.math3.random.RandomDataGenerator.<init>:()V
            putfield org.apache.commons.math3.stat.ranking.NaturalRanking.randomData:Lorg/apache/commons/math3/random/RandomDataGenerator;
         4: .line 132
            return
        end local 2 // org.apache.commons.math3.stat.ranking.TiesStrategy tiesStrategy
        end local 1 // org.apache.commons.math3.stat.ranking.NaNStrategy nanStrategy
        end local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    5     0          this  Lorg/apache/commons/math3/stat/ranking/NaturalRanking;
            0    5     1   nanStrategy  Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
            0    5     2  tiesStrategy  Lorg/apache/commons/math3/stat/ranking/TiesStrategy;
    MethodParameters:
              Name  Flags
      nanStrategy   
      tiesStrategy  

  public void <init>(org.apache.commons.math3.random.RandomGenerator);
    descriptor: (Lorg/apache/commons/math3/random/RandomGenerator;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
        start local 1 // org.apache.commons.math3.random.RandomGenerator randomGenerator
         0: .line 141
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 142
            aload 0 /* this */
            getstatic org.apache.commons.math3.stat.ranking.TiesStrategy.RANDOM:Lorg/apache/commons/math3/stat/ranking/TiesStrategy;
            putfield org.apache.commons.math3.stat.ranking.NaturalRanking.tiesStrategy:Lorg/apache/commons/math3/stat/ranking/TiesStrategy;
         2: .line 143
            aload 0 /* this */
            getstatic org.apache.commons.math3.stat.ranking.NaturalRanking.DEFAULT_NAN_STRATEGY:Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
            putfield org.apache.commons.math3.stat.ranking.NaturalRanking.nanStrategy:Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
         3: .line 144
            aload 0 /* this */
            new org.apache.commons.math3.random.RandomDataGenerator
            dup
            aload 1 /* randomGenerator */
            invokespecial org.apache.commons.math3.random.RandomDataGenerator.<init>:(Lorg/apache/commons/math3/random/RandomGenerator;)V
            putfield org.apache.commons.math3.stat.ranking.NaturalRanking.randomData:Lorg/apache/commons/math3/random/RandomDataGenerator;
         4: .line 145
            return
        end local 1 // org.apache.commons.math3.random.RandomGenerator randomGenerator
        end local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    5     0             this  Lorg/apache/commons/math3/stat/ranking/NaturalRanking;
            0    5     1  randomGenerator  Lorg/apache/commons/math3/random/RandomGenerator;
    MethodParameters:
                 Name  Flags
      randomGenerator  

  public void <init>(org.apache.commons.math3.stat.ranking.NaNStrategy, org.apache.commons.math3.random.RandomGenerator);
    descriptor: (Lorg/apache/commons/math3/stat/ranking/NaNStrategy;Lorg/apache/commons/math3/random/RandomGenerator;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
        start local 1 // org.apache.commons.math3.stat.ranking.NaNStrategy nanStrategy
        start local 2 // org.apache.commons.math3.random.RandomGenerator randomGenerator
         0: .line 157
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 158
            aload 0 /* this */
            aload 1 /* nanStrategy */
            putfield org.apache.commons.math3.stat.ranking.NaturalRanking.nanStrategy:Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
         2: .line 159
            aload 0 /* this */
            getstatic org.apache.commons.math3.stat.ranking.TiesStrategy.RANDOM:Lorg/apache/commons/math3/stat/ranking/TiesStrategy;
            putfield org.apache.commons.math3.stat.ranking.NaturalRanking.tiesStrategy:Lorg/apache/commons/math3/stat/ranking/TiesStrategy;
         3: .line 160
            aload 0 /* this */
            new org.apache.commons.math3.random.RandomDataGenerator
            dup
            aload 2 /* randomGenerator */
            invokespecial org.apache.commons.math3.random.RandomDataGenerator.<init>:(Lorg/apache/commons/math3/random/RandomGenerator;)V
            putfield org.apache.commons.math3.stat.ranking.NaturalRanking.randomData:Lorg/apache/commons/math3/random/RandomDataGenerator;
         4: .line 161
            return
        end local 2 // org.apache.commons.math3.random.RandomGenerator randomGenerator
        end local 1 // org.apache.commons.math3.stat.ranking.NaNStrategy nanStrategy
        end local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    5     0             this  Lorg/apache/commons/math3/stat/ranking/NaturalRanking;
            0    5     1      nanStrategy  Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
            0    5     2  randomGenerator  Lorg/apache/commons/math3/random/RandomGenerator;
    MethodParameters:
                 Name  Flags
      nanStrategy      
      randomGenerator  

  public org.apache.commons.math3.stat.ranking.NaNStrategy getNanStrategy();
    descriptor: ()Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
         0: .line 169
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.ranking.NaturalRanking.nanStrategy:Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
            areturn
        end local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/stat/ranking/NaturalRanking;

  public org.apache.commons.math3.stat.ranking.TiesStrategy getTiesStrategy();
    descriptor: ()Lorg/apache/commons/math3/stat/ranking/TiesStrategy;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
         0: .line 178
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.ranking.NaturalRanking.tiesStrategy:Lorg/apache/commons/math3/stat/ranking/TiesStrategy;
            areturn
        end local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/stat/ranking/NaturalRanking;

  public double[] rank(double[]);
    descriptor: ([D)[D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=8, args_size=2
        start local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
        start local 1 // double[] data
         0: .line 194
            aload 1 /* data */
            arraylength
            anewarray org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair
            astore 2 /* ranks */
        start local 2 // org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair[] ranks
         1: .line 195
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 5
         3: .line 196
      StackMap locals: org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair[] int
      StackMap stack:
            aload 2 /* ranks */
            iload 3 /* i */
            new org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair
            dup
            aload 1 /* data */
            iload 3 /* i */
            daload
            iload 3 /* i */
            invokespecial org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair.<init>:(DI)V
            aastore
         4: .line 195
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            aload 1 /* data */
            arraylength
            if_icmplt 3
        end local 3 // int i
         6: .line 200
            aconst_null
            astore 3 /* nanPositions */
        start local 3 // java.util.List nanPositions
         7: .line 201
            invokestatic org.apache.commons.math3.stat.ranking.NaturalRanking.$SWITCH_TABLE$org$apache$commons$math3$stat$ranking$NaNStrategy:()[I
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.ranking.NaturalRanking.nanStrategy:Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
            invokevirtual org.apache.commons.math3.stat.ranking.NaNStrategy.ordinal:()I
            iaload
            tableswitch { // 1 - 5
                    1: 10
                    2: 8
                    3: 12
                    4: 14
                    5: 16
              default: 19
          }
         8: .line 203
      StackMap locals: org.apache.commons.math3.stat.ranking.NaturalRanking double[] org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair[] java.util.List
      StackMap stack:
            aload 0 /* this */
            aload 2 /* ranks */
            ldc Infinity
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking.recodeNaNs:([Lorg/apache/commons/math3/stat/ranking/NaturalRanking$IntDoublePair;D)V
         9: .line 204
            goto 20
        10: .line 206
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* ranks */
            ldc -Infinity
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking.recodeNaNs:([Lorg/apache/commons/math3/stat/ranking/NaturalRanking$IntDoublePair;D)V
        11: .line 207
            goto 20
        12: .line 209
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* ranks */
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking.removeNaNs:([Lorg/apache/commons/math3/stat/ranking/NaturalRanking$IntDoublePair;)[Lorg/apache/commons/math3/stat/ranking/NaturalRanking$IntDoublePair;
            astore 2 /* ranks */
        13: .line 210
            goto 20
        14: .line 212
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* ranks */
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking.getNanPositions:([Lorg/apache/commons/math3/stat/ranking/NaturalRanking$IntDoublePair;)Ljava/util/List;
            astore 3 /* nanPositions */
        15: .line 213
            goto 20
        16: .line 215
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* ranks */
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking.getNanPositions:([Lorg/apache/commons/math3/stat/ranking/NaturalRanking$IntDoublePair;)Ljava/util/List;
            astore 3 /* nanPositions */
        17: .line 216
            aload 3 /* nanPositions */
            invokeinterface java.util.List.size:()I
            ifle 20
        18: .line 217
            new org.apache.commons.math3.exception.NotANumberException
            dup
            invokespecial org.apache.commons.math3.exception.NotANumberException.<init>:()V
            athrow
        19: .line 221
      StackMap locals:
      StackMap stack:
            new org.apache.commons.math3.exception.MathInternalError
            dup
            invokespecial org.apache.commons.math3.exception.MathInternalError.<init>:()V
            athrow
        20: .line 225
      StackMap locals:
      StackMap stack:
            aload 2 /* ranks */
            invokestatic java.util.Arrays.sort:([Ljava/lang/Object;)V
        21: .line 229
            aload 2 /* ranks */
            arraylength
            newarray 7
            astore 4 /* out */
        start local 4 // double[] out
        22: .line 230
            iconst_1
            istore 5 /* pos */
        start local 5 // int pos
        23: .line 231
            aload 4 /* out */
            aload 2 /* ranks */
            iconst_0
            aaload
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair.getPosition:()I
            iload 5 /* pos */
            i2d
            dastore
        24: .line 232
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 6 /* tiesTrace */
        start local 6 // java.util.List tiesTrace
        25: .line 233
            aload 6 /* tiesTrace */
            aload 2 /* ranks */
            iconst_0
            aaload
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair.getPosition:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        26: .line 234
            iconst_1
            istore 7 /* i */
        start local 7 // int i
        27: goto 38
        28: .line 235
      StackMap locals: org.apache.commons.math3.stat.ranking.NaturalRanking double[] org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair[] java.util.List double[] int java.util.List int
      StackMap stack:
            aload 2 /* ranks */
            iload 7 /* i */
            aaload
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair.getValue:()D
            aload 2 /* ranks */
            iload 7 /* i */
            iconst_1
            isub
            aaload
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair.getValue:()D
            invokestatic java.lang.Double.compare:(DD)I
            ifle 35
        29: .line 237
            iload 7 /* i */
            iconst_1
            iadd
            istore 5 /* pos */
        30: .line 238
            aload 6 /* tiesTrace */
            invokeinterface java.util.List.size:()I
            iconst_1
            if_icmple 32
        31: .line 239
            aload 0 /* this */
            aload 4 /* out */
            aload 6 /* tiesTrace */
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking.resolveTie:([DLjava/util/List;)V
        32: .line 241
      StackMap locals:
      StackMap stack:
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 6 /* tiesTrace */
        33: .line 242
            aload 6 /* tiesTrace */
            aload 2 /* ranks */
            iload 7 /* i */
            aaload
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair.getPosition:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        34: .line 243
            goto 36
        35: .line 245
      StackMap locals:
      StackMap stack:
            aload 6 /* tiesTrace */
            aload 2 /* ranks */
            iload 7 /* i */
            aaload
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair.getPosition:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        36: .line 247
      StackMap locals:
      StackMap stack:
            aload 4 /* out */
            aload 2 /* ranks */
            iload 7 /* i */
            aaload
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair.getPosition:()I
            iload 5 /* pos */
            i2d
            dastore
        37: .line 234
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        38: iload 7 /* i */
            aload 2 /* ranks */
            arraylength
            if_icmplt 28
        end local 7 // int i
        39: .line 249
            aload 6 /* tiesTrace */
            invokeinterface java.util.List.size:()I
            iconst_1
            if_icmple 41
        40: .line 250
            aload 0 /* this */
            aload 4 /* out */
            aload 6 /* tiesTrace */
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking.resolveTie:([DLjava/util/List;)V
        41: .line 252
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.ranking.NaturalRanking.nanStrategy:Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
            getstatic org.apache.commons.math3.stat.ranking.NaNStrategy.FIXED:Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
            if_acmpne 43
        42: .line 253
            aload 0 /* this */
            aload 4 /* out */
            aload 3 /* nanPositions */
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking.restoreNaNs:([DLjava/util/List;)V
        43: .line 255
      StackMap locals:
      StackMap stack:
            aload 4 /* out */
            areturn
        end local 6 // java.util.List tiesTrace
        end local 5 // int pos
        end local 4 // double[] out
        end local 3 // java.util.List nanPositions
        end local 2 // org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair[] ranks
        end local 1 // double[] data
        end local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   44     0          this  Lorg/apache/commons/math3/stat/ranking/NaturalRanking;
            0   44     1          data  [D
            1   44     2         ranks  [Lorg/apache/commons/math3/stat/ranking/NaturalRanking$IntDoublePair;
            2    6     3             i  I
            7   44     3  nanPositions  Ljava/util/List<Ljava/lang/Integer;>;
           22   44     4           out  [D
           23   44     5           pos  I
           25   44     6     tiesTrace  Ljava/util/List<Ljava/lang/Integer;>;
           27   39     7             i  I
    MethodParameters:
      Name  Flags
      data  

  private org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair[] removeNaNs(org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair[]);
    descriptor: ([Lorg/apache/commons/math3/stat/ranking/NaturalRanking$IntDoublePair;)[Lorg/apache/commons/math3/stat/ranking/NaturalRanking$IntDoublePair;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=8, locals=6, args_size=2
        start local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
        start local 1 // org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair[] ranks
         0: .line 266
            aload 0 /* this */
            aload 1 /* ranks */
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking.containsNaNs:([Lorg/apache/commons/math3/stat/ranking/NaturalRanking$IntDoublePair;)Z
            ifne 2
         1: .line 267
            aload 1 /* ranks */
            areturn
         2: .line 269
      StackMap locals:
      StackMap stack:
            aload 1 /* ranks */
            arraylength
            anewarray org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair
            astore 2 /* outRanks */
        start local 2 // org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair[] outRanks
         3: .line 270
            iconst_0
            istore 3 /* j */
        start local 3 // int j
         4: .line 271
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         5: goto 20
         6: .line 272
      StackMap locals: org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair[] int int
      StackMap stack:
            aload 1 /* ranks */
            iload 4 /* i */
            aaload
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair.getValue:()D
            invokestatic java.lang.Double.isNaN:(D)Z
            ifeq 15
         7: .line 274
            iload 4 /* i */
            iconst_1
            iadd
            istore 5 /* k */
        start local 5 // int k
         8: goto 13
         9: .line 275
      StackMap locals: int
      StackMap stack:
            aload 1 /* ranks */
            iload 5 /* k */
            new org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair
            dup
        10: .line 276
            aload 1 /* ranks */
            iload 5 /* k */
            aaload
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair.getValue:()D
            aload 1 /* ranks */
            iload 5 /* k */
            aaload
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair.getPosition:()I
            iconst_1
            isub
            invokespecial org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair.<init>:(DI)V
        11: .line 275
            aastore
        12: .line 274
            iinc 5 /* k */ 1
      StackMap locals:
      StackMap stack:
        13: iload 5 /* k */
            aload 1 /* ranks */
            arraylength
            if_icmplt 9
        end local 5 // int k
        14: .line 278
            goto 19
        15: .line 279
      StackMap locals:
      StackMap stack:
            aload 2 /* outRanks */
            iload 3 /* j */
            new org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair
            dup
        16: .line 280
            aload 1 /* ranks */
            iload 4 /* i */
            aaload
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair.getValue:()D
            aload 1 /* ranks */
            iload 4 /* i */
            aaload
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair.getPosition:()I
            invokespecial org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair.<init>:(DI)V
        17: .line 279
            aastore
        18: .line 281
            iinc 3 /* j */ 1
        19: .line 271
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        20: iload 4 /* i */
            aload 1 /* ranks */
            arraylength
            if_icmplt 6
        end local 4 // int i
        21: .line 284
            iload 3 /* j */
            anewarray org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair
            astore 4 /* returnRanks */
        start local 4 // org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair[] returnRanks
        22: .line 285
            aload 2 /* outRanks */
            iconst_0
            aload 4 /* returnRanks */
            iconst_0
            iload 3 /* j */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        23: .line 286
            aload 4 /* returnRanks */
            areturn
        end local 4 // org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair[] returnRanks
        end local 3 // int j
        end local 2 // org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair[] outRanks
        end local 1 // org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair[] ranks
        end local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   24     0         this  Lorg/apache/commons/math3/stat/ranking/NaturalRanking;
            0   24     1        ranks  [Lorg/apache/commons/math3/stat/ranking/NaturalRanking$IntDoublePair;
            3   24     2     outRanks  [Lorg/apache/commons/math3/stat/ranking/NaturalRanking$IntDoublePair;
            4   24     3            j  I
            5   21     4            i  I
            8   14     5            k  I
           22   24     4  returnRanks  [Lorg/apache/commons/math3/stat/ranking/NaturalRanking$IntDoublePair;
    MethodParameters:
       Name  Flags
      ranks  

  private void recodeNaNs(org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair[], double);
    descriptor: ([Lorg/apache/commons/math3/stat/ranking/NaturalRanking$IntDoublePair;D)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=8, locals=5, args_size=3
        start local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
        start local 1 // org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair[] ranks
        start local 2 // double value
         0: .line 296
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         1: goto 7
         2: .line 297
      StackMap locals: int
      StackMap stack:
            aload 1 /* ranks */
            iload 4 /* i */
            aaload
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair.getValue:()D
            invokestatic java.lang.Double.isNaN:(D)Z
            ifeq 6
         3: .line 298
            aload 1 /* ranks */
            iload 4 /* i */
            new org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair
            dup
         4: .line 299
            dload 2 /* value */
            aload 1 /* ranks */
            iload 4 /* i */
            aaload
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair.getPosition:()I
            invokespecial org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair.<init>:(DI)V
         5: .line 298
            aastore
         6: .line 296
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 4 /* i */
            aload 1 /* ranks */
            arraylength
            if_icmplt 2
        end local 4 // int i
         8: .line 302
            return
        end local 2 // double value
        end local 1 // org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair[] ranks
        end local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/apache/commons/math3/stat/ranking/NaturalRanking;
            0    9     1  ranks  [Lorg/apache/commons/math3/stat/ranking/NaturalRanking$IntDoublePair;
            0    9     2  value  D
            1    8     4      i  I
    MethodParameters:
       Name  Flags
      ranks  
      value  

  private boolean containsNaNs(org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair[]);
    descriptor: ([Lorg/apache/commons/math3/stat/ranking/NaturalRanking$IntDoublePair;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
        start local 1 // org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair[] ranks
         0: .line 311
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 5
         2: .line 312
      StackMap locals: int
      StackMap stack:
            aload 1 /* ranks */
            iload 2 /* i */
            aaload
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair.getValue:()D
            invokestatic java.lang.Double.isNaN:(D)Z
            ifeq 4
         3: .line 313
            iconst_1
            ireturn
         4: .line 311
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 1 /* ranks */
            arraylength
            if_icmplt 2
        end local 2 // int i
         6: .line 316
            iconst_0
            ireturn
        end local 1 // org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair[] ranks
        end local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/apache/commons/math3/stat/ranking/NaturalRanking;
            0    7     1  ranks  [Lorg/apache/commons/math3/stat/ranking/NaturalRanking$IntDoublePair;
            1    6     2      i  I
    MethodParameters:
       Name  Flags
      ranks  

  private void resolveTie(double[], java.util.List<java.lang.Integer>);
    descriptor: ([DLjava/util/List;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=9, locals=10, args_size=3
        start local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
        start local 1 // double[] ranks
        start local 2 // java.util.List tiesTrace
         0: .line 336
            aload 1 /* ranks */
            aload 2 /* tiesTrace */
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            daload
            dstore 3 /* c */
        start local 3 // double c
         1: .line 339
            aload 2 /* tiesTrace */
            invokeinterface java.util.List.size:()I
            istore 5 /* length */
        start local 5 // int length
         2: .line 341
            invokestatic org.apache.commons.math3.stat.ranking.NaturalRanking.$SWITCH_TABLE$org$apache$commons$math3$stat$ranking$TiesStrategy:()[I
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.ranking.NaturalRanking.tiesStrategy:Lorg/apache/commons/math3/stat/ranking/TiesStrategy;
            invokevirtual org.apache.commons.math3.stat.ranking.TiesStrategy.ordinal:()I
            iaload
            tableswitch { // 1 - 5
                    1: 17
                    2: 7
                    3: 5
                    4: 3
                    5: 9
              default: 24
          }
         3: .line 343
      StackMap locals: double int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* ranks */
            aload 2 /* tiesTrace */
            ldc 2.0
            dload 3 /* c */
            dmul
            iload 5 /* length */
            i2d
            dadd
            dconst_1
            dsub
            ldc 2.0
            ddiv
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking.fill:([DLjava/util/List;D)V
         4: .line 344
            goto 25
         5: .line 346
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* ranks */
            aload 2 /* tiesTrace */
            dload 3 /* c */
            iload 5 /* length */
            i2d
            dadd
            dconst_1
            dsub
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking.fill:([DLjava/util/List;D)V
         6: .line 347
            goto 25
         7: .line 349
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* ranks */
            aload 2 /* tiesTrace */
            dload 3 /* c */
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking.fill:([DLjava/util/List;D)V
         8: .line 350
            goto 25
         9: .line 352
      StackMap locals:
      StackMap stack:
            aload 2 /* tiesTrace */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 6 /* iterator */
        start local 6 // java.util.Iterator iterator
        10: .line 353
            dload 3 /* c */
            invokestatic org.apache.commons.math3.util.FastMath.round:(D)J
            lstore 7 /* f */
        start local 7 // long f
        11: .line 354
            goto 15
        12: .line 356
      StackMap locals: java.util.Iterator long
      StackMap stack:
            aload 1 /* ranks */
            aload 6 /* iterator */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
        13: .line 357
            aload 0 /* this */
            getfield org.apache.commons.math3.stat.ranking.NaturalRanking.randomData:Lorg/apache/commons/math3/random/RandomDataGenerator;
            lload 7 /* f */
            lload 7 /* f */
            iload 5 /* length */
            i2l
            ladd
            lconst_1
            lsub
            invokevirtual org.apache.commons.math3.random.RandomDataGenerator.nextLong:(JJ)J
            l2d
        14: .line 356
            dastore
        15: .line 354
      StackMap locals:
      StackMap stack:
            aload 6 /* iterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 12
        16: .line 359
            goto 25
        end local 7 // long f
        end local 6 // java.util.Iterator iterator
        17: .line 362
      StackMap locals:
      StackMap stack:
            aload 2 /* tiesTrace */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 6 /* iterator */
        start local 6 // java.util.Iterator iterator
        18: .line 363
            dload 3 /* c */
            invokestatic org.apache.commons.math3.util.FastMath.round:(D)J
            lstore 7 /* f */
        start local 7 // long f
        19: .line 364
            iconst_0
            istore 9 /* i */
        start local 9 // int i
        20: .line 365
            goto 22
        21: .line 366
      StackMap locals: java.util.Iterator long int
      StackMap stack:
            aload 1 /* ranks */
            aload 6 /* iterator */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            lload 7 /* f */
            iload 9 /* i */
            iinc 9 /* i */ 1
            i2l
            ladd
            l2d
            dastore
        22: .line 365
      StackMap locals:
      StackMap stack:
            aload 6 /* iterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 21
        23: .line 368
            goto 25
        end local 9 // int i
        end local 7 // long f
        end local 6 // java.util.Iterator iterator
        24: .line 370
      StackMap locals:
      StackMap stack:
            new org.apache.commons.math3.exception.MathInternalError
            dup
            invokespecial org.apache.commons.math3.exception.MathInternalError.<init>:()V
            athrow
        25: .line 372
      StackMap locals:
      StackMap stack:
            return
        end local 5 // int length
        end local 3 // double c
        end local 2 // java.util.List tiesTrace
        end local 1 // double[] ranks
        end local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   26     0       this  Lorg/apache/commons/math3/stat/ranking/NaturalRanking;
            0   26     1      ranks  [D
            0   26     2  tiesTrace  Ljava/util/List<Ljava/lang/Integer;>;
            1   26     3          c  D
            2   26     5     length  I
           10   17     6   iterator  Ljava/util/Iterator<Ljava/lang/Integer;>;
           18   24     6   iterator  Ljava/util/Iterator<Ljava/lang/Integer;>;
           11   17     7          f  J
           19   24     7          f  J
           20   24     9          i  I
    Signature: ([DLjava/util/List<Ljava/lang/Integer;>;)V
    MethodParameters:
           Name  Flags
      ranks      
      tiesTrace  

  private void fill(double[], java.util.List<java.lang.Integer>, );
    descriptor: ([DLjava/util/List;D)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=6, args_size=4
        start local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
        start local 1 // double[] data
        start local 2 // java.util.List tiesTrace
        start local 3 // double value
         0: .line 382
            aload 2 /* tiesTrace */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 5 /* iterator */
        start local 5 // java.util.Iterator iterator
         1: .line 383
            goto 3
         2: .line 384
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 1 /* data */
            aload 5 /* iterator */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            dload 3 /* value */
            dastore
         3: .line 383
      StackMap locals:
      StackMap stack:
            aload 5 /* iterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         4: .line 386
            return
        end local 5 // java.util.Iterator iterator
        end local 3 // double value
        end local 2 // java.util.List tiesTrace
        end local 1 // double[] data
        end local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/apache/commons/math3/stat/ranking/NaturalRanking;
            0    5     1       data  [D
            0    5     2  tiesTrace  Ljava/util/List<Ljava/lang/Integer;>;
            0    5     3      value  D
            1    5     5   iterator  Ljava/util/Iterator<Ljava/lang/Integer;>;
    Signature: ([DLjava/util/List<Ljava/lang/Integer;>;D)V
    MethodParameters:
           Name  Flags
      data       
      tiesTrace  
      value      

  private void restoreNaNs(double[], java.util.List<java.lang.Integer>);
    descriptor: ([DLjava/util/List;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
        start local 1 // double[] ranks
        start local 2 // java.util.List nanPositions
         0: .line 395
            aload 2 /* nanPositions */
            invokeinterface java.util.List.size:()I
            ifne 2
         1: .line 396
            return
         2: .line 398
      StackMap locals:
      StackMap stack:
            aload 2 /* nanPositions */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3 /* iterator */
        start local 3 // java.util.Iterator iterator
         3: .line 399
            goto 5
         4: .line 400
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 1 /* ranks */
            aload 3 /* iterator */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            ldc NaN
            dastore
         5: .line 399
      StackMap locals:
      StackMap stack:
            aload 3 /* iterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         6: .line 403
            return
        end local 3 // java.util.Iterator iterator
        end local 2 // java.util.List nanPositions
        end local 1 // double[] ranks
        end local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    7     0          this  Lorg/apache/commons/math3/stat/ranking/NaturalRanking;
            0    7     1         ranks  [D
            0    7     2  nanPositions  Ljava/util/List<Ljava/lang/Integer;>;
            3    7     3      iterator  Ljava/util/Iterator<Ljava/lang/Integer;>;
    Signature: ([DLjava/util/List<Ljava/lang/Integer;>;)V
    MethodParameters:
              Name  Flags
      ranks         
      nanPositions  

  private java.util.List<java.lang.Integer> getNanPositions(org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair[]);
    descriptor: ([Lorg/apache/commons/math3/stat/ranking/NaturalRanking$IntDoublePair;)Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
        start local 1 // org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair[] ranks
         0: .line 412
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 2 /* out */
        start local 2 // java.util.ArrayList out
         1: .line 413
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 6
         3: .line 414
      StackMap locals: java.util.ArrayList int
      StackMap stack:
            aload 1 /* ranks */
            iload 3 /* i */
            aaload
            invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair.getValue:()D
            invokestatic java.lang.Double.isNaN:(D)Z
            ifeq 5
         4: .line 415
            aload 2 /* out */
            iload 3 /* i */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         5: .line 413
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            aload 1 /* ranks */
            arraylength
            if_icmplt 3
        end local 3 // int i
         7: .line 418
            aload 2 /* out */
            areturn
        end local 2 // java.util.ArrayList out
        end local 1 // org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair[] ranks
        end local 0 // org.apache.commons.math3.stat.ranking.NaturalRanking this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lorg/apache/commons/math3/stat/ranking/NaturalRanking;
            0    8     1  ranks  [Lorg/apache/commons/math3/stat/ranking/NaturalRanking$IntDoublePair;
            1    8     2    out  Ljava/util/ArrayList<Ljava/lang/Integer;>;
            2    7     3      i  I
    Signature: ([Lorg/apache/commons/math3/stat/ranking/NaturalRanking$IntDoublePair;)Ljava/util/List<Ljava/lang/Integer;>;
    MethodParameters:
       Name  Flags
      ranks  

  static int[] $SWITCH_TABLE$org$apache$commons$math3$stat$ranking$NaNStrategy();
    descriptor: ()[I
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=1, args_size=0
         0: .line 70
            getstatic org.apache.commons.math3.stat.ranking.NaturalRanking.$SWITCH_TABLE$org$apache$commons$math3$stat$ranking$NaNStrategy:[I
            dup
            ifnull 1
            areturn
      StackMap locals:
      StackMap stack: int[]
         1: pop
            invokestatic org.apache.commons.math3.stat.ranking.NaNStrategy.values:()[Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
            arraylength
            newarray 10
            astore 0
         2: aload 0
            getstatic org.apache.commons.math3.stat.ranking.NaNStrategy.FAILED:Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
            invokevirtual org.apache.commons.math3.stat.ranking.NaNStrategy.ordinal:()I
            iconst_5
            iastore
         3: goto 5
      StackMap locals: int[]
      StackMap stack: java.lang.NoSuchFieldError
         4: pop
      StackMap locals:
      StackMap stack:
         5: aload 0
            getstatic org.apache.commons.math3.stat.ranking.NaNStrategy.FIXED:Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
            invokevirtual org.apache.commons.math3.stat.ranking.NaNStrategy.ordinal:()I
            iconst_4
            iastore
         6: goto 8
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
         7: pop
      StackMap locals:
      StackMap stack:
         8: aload 0
            getstatic org.apache.commons.math3.stat.ranking.NaNStrategy.MAXIMAL:Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
            invokevirtual org.apache.commons.math3.stat.ranking.NaNStrategy.ordinal:()I
            iconst_2
            iastore
         9: goto 11
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        10: pop
      StackMap locals:
      StackMap stack:
        11: aload 0
            getstatic org.apache.commons.math3.stat.ranking.NaNStrategy.MINIMAL:Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
            invokevirtual org.apache.commons.math3.stat.ranking.NaNStrategy.ordinal:()I
            iconst_1
            iastore
        12: goto 14
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        13: pop
      StackMap locals:
      StackMap stack:
        14: aload 0
            getstatic org.apache.commons.math3.stat.ranking.NaNStrategy.REMOVED:Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
            invokevirtual org.apache.commons.math3.stat.ranking.NaNStrategy.ordinal:()I
            iconst_3
            iastore
        15: goto 17
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        16: pop
      StackMap locals:
      StackMap stack:
        17: aload 0
            dup
            putstatic org.apache.commons.math3.stat.ranking.NaturalRanking.$SWITCH_TABLE$org$apache$commons$math3$stat$ranking$NaNStrategy:[I
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.NoSuchFieldError
           5     6       7  Class java.lang.NoSuchFieldError
           8     9      10  Class java.lang.NoSuchFieldError
          11    12      13  Class java.lang.NoSuchFieldError
          14    15      16  Class java.lang.NoSuchFieldError

  static int[] $SWITCH_TABLE$org$apache$commons$math3$stat$ranking$TiesStrategy();
    descriptor: ()[I
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=1, args_size=0
         0: .line 70
            getstatic org.apache.commons.math3.stat.ranking.NaturalRanking.$SWITCH_TABLE$org$apache$commons$math3$stat$ranking$TiesStrategy:[I
            dup
            ifnull 1
            areturn
      StackMap locals:
      StackMap stack: int[]
         1: pop
            invokestatic org.apache.commons.math3.stat.ranking.TiesStrategy.values:()[Lorg/apache/commons/math3/stat/ranking/TiesStrategy;
            arraylength
            newarray 10
            astore 0
         2: aload 0
            getstatic org.apache.commons.math3.stat.ranking.TiesStrategy.AVERAGE:Lorg/apache/commons/math3/stat/ranking/TiesStrategy;
            invokevirtual org.apache.commons.math3.stat.ranking.TiesStrategy.ordinal:()I
            iconst_4
            iastore
         3: goto 5
      StackMap locals: int[]
      StackMap stack: java.lang.NoSuchFieldError
         4: pop
      StackMap locals:
      StackMap stack:
         5: aload 0
            getstatic org.apache.commons.math3.stat.ranking.TiesStrategy.MAXIMUM:Lorg/apache/commons/math3/stat/ranking/TiesStrategy;
            invokevirtual org.apache.commons.math3.stat.ranking.TiesStrategy.ordinal:()I
            iconst_3
            iastore
         6: goto 8
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
         7: pop
      StackMap locals:
      StackMap stack:
         8: aload 0
            getstatic org.apache.commons.math3.stat.ranking.TiesStrategy.MINIMUM:Lorg/apache/commons/math3/stat/ranking/TiesStrategy;
            invokevirtual org.apache.commons.math3.stat.ranking.TiesStrategy.ordinal:()I
            iconst_2
            iastore
         9: goto 11
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        10: pop
      StackMap locals:
      StackMap stack:
        11: aload 0
            getstatic org.apache.commons.math3.stat.ranking.TiesStrategy.RANDOM:Lorg/apache/commons/math3/stat/ranking/TiesStrategy;
            invokevirtual org.apache.commons.math3.stat.ranking.TiesStrategy.ordinal:()I
            iconst_5
            iastore
        12: goto 14
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        13: pop
      StackMap locals:
      StackMap stack:
        14: aload 0
            getstatic org.apache.commons.math3.stat.ranking.TiesStrategy.SEQUENTIAL:Lorg/apache/commons/math3/stat/ranking/TiesStrategy;
            invokevirtual org.apache.commons.math3.stat.ranking.TiesStrategy.ordinal:()I
            iconst_1
            iastore
        15: goto 17
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        16: pop
      StackMap locals:
      StackMap stack:
        17: aload 0
            dup
            putstatic org.apache.commons.math3.stat.ranking.NaturalRanking.$SWITCH_TABLE$org$apache$commons$math3$stat$ranking$TiesStrategy:[I
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.NoSuchFieldError
           5     6       7  Class java.lang.NoSuchFieldError
           8     9      10  Class java.lang.NoSuchFieldError
          11    12      13  Class java.lang.NoSuchFieldError
          14    15      16  Class java.lang.NoSuchFieldError
}
SourceFile: "NaturalRanking.java"
NestMembers:
  org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair
InnerClasses:
  private IntDoublePair = org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair of org.apache.commons.math3.stat.ranking.NaturalRanking