public class org.apache.commons.math3.optim.SimpleVectorValueChecker extends org.apache.commons.math3.optim.AbstractConvergenceChecker<org.apache.commons.math3.optim.PointVectorValuePair>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.optim.SimpleVectorValueChecker
  super_class: org.apache.commons.math3.optim.AbstractConvergenceChecker
{
  private static final int ITERATION_CHECK_DISABLED;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -1

  private final int maxIterationCount;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(double, double);
    descriptor: (DD)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // org.apache.commons.math3.optim.SimpleVectorValueChecker this
        start local 1 // double relativeThreshold
        start local 3 // double absoluteThreshold
         0: .line 66
            aload 0 /* this */
            dload 1 /* relativeThreshold */
            dload 3 /* absoluteThreshold */
            invokespecial org.apache.commons.math3.optim.AbstractConvergenceChecker.<init>:(DD)V
         1: .line 67
            aload 0 /* this */
            iconst_m1
            putfield org.apache.commons.math3.optim.SimpleVectorValueChecker.maxIterationCount:I
         2: .line 68
            return
        end local 3 // double absoluteThreshold
        end local 1 // double relativeThreshold
        end local 0 // org.apache.commons.math3.optim.SimpleVectorValueChecker this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    3     0               this  Lorg/apache/commons/math3/optim/SimpleVectorValueChecker;
            0    3     1  relativeThreshold  D
            0    3     3  absoluteThreshold  D
    MethodParameters:
                   Name  Flags
      relativeThreshold  final
      absoluteThreshold  final

  public void <init>(double, double, int);
    descriptor: (DDI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // org.apache.commons.math3.optim.SimpleVectorValueChecker this
        start local 1 // double relativeThreshold
        start local 3 // double absoluteThreshold
        start local 5 // int maxIter
         0: .line 88
            aload 0 /* this */
            dload 1 /* relativeThreshold */
            dload 3 /* absoluteThreshold */
            invokespecial org.apache.commons.math3.optim.AbstractConvergenceChecker.<init>:(DD)V
         1: .line 90
            iload 5 /* maxIter */
            ifgt 3
         2: .line 91
            new org.apache.commons.math3.exception.NotStrictlyPositiveException
            dup
            iload 5 /* maxIter */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokespecial org.apache.commons.math3.exception.NotStrictlyPositiveException.<init>:(Ljava/lang/Number;)V
            athrow
         3: .line 93
      StackMap locals: org.apache.commons.math3.optim.SimpleVectorValueChecker double double int
      StackMap stack:
            aload 0 /* this */
            iload 5 /* maxIter */
            putfield org.apache.commons.math3.optim.SimpleVectorValueChecker.maxIterationCount:I
         4: .line 94
            return
        end local 5 // int maxIter
        end local 3 // double absoluteThreshold
        end local 1 // double relativeThreshold
        end local 0 // org.apache.commons.math3.optim.SimpleVectorValueChecker this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    5     0               this  Lorg/apache/commons/math3/optim/SimpleVectorValueChecker;
            0    5     1  relativeThreshold  D
            0    5     3  absoluteThreshold  D
            0    5     5            maxIter  I
    MethodParameters:
                   Name  Flags
      relativeThreshold  final
      absoluteThreshold  final
      maxIter            final

  public boolean converged(int, org.apache.commons.math3.optim.PointVectorValuePair, org.apache.commons.math3.optim.PointVectorValuePair);
    descriptor: (ILorg/apache/commons/math3/optim/PointVectorValuePair;Lorg/apache/commons/math3/optim/PointVectorValuePair;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=15, args_size=4
        start local 0 // org.apache.commons.math3.optim.SimpleVectorValueChecker this
        start local 1 // int iteration
        start local 2 // org.apache.commons.math3.optim.PointVectorValuePair previous
        start local 3 // org.apache.commons.math3.optim.PointVectorValuePair current
         0: .line 116
            aload 0 /* this */
            getfield org.apache.commons.math3.optim.SimpleVectorValueChecker.maxIterationCount:I
            iconst_m1
            if_icmpeq 2
            iload 1 /* iteration */
            aload 0 /* this */
            getfield org.apache.commons.math3.optim.SimpleVectorValueChecker.maxIterationCount:I
            if_icmplt 2
         1: .line 117
            iconst_1
            ireturn
         2: .line 120
      StackMap locals:
      StackMap stack:
            aload 2 /* previous */
            invokevirtual org.apache.commons.math3.optim.PointVectorValuePair.getValueRef:()[D
            astore 4 /* p */
        start local 4 // double[] p
         3: .line 121
            aload 3 /* current */
            invokevirtual org.apache.commons.math3.optim.PointVectorValuePair.getValueRef:()[D
            astore 5 /* c */
        start local 5 // double[] c
         4: .line 122
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         5: goto 14
         6: .line 123
      StackMap locals: double[] double[] int
      StackMap stack:
            aload 4 /* p */
            iload 6 /* i */
            daload
            dstore 7 /* pi */
        start local 7 // double pi
         7: .line 124
            aload 5 /* c */
            iload 6 /* i */
            daload
            dstore 9 /* ci */
        start local 9 // double ci
         8: .line 125
            dload 7 /* pi */
            dload 9 /* ci */
            dsub
            invokestatic org.apache.commons.math3.util.FastMath.abs:(D)D
            dstore 11 /* difference */
        start local 11 // double difference
         9: .line 126
            dload 7 /* pi */
            invokestatic org.apache.commons.math3.util.FastMath.abs:(D)D
            dload 9 /* ci */
            invokestatic org.apache.commons.math3.util.FastMath.abs:(D)D
            invokestatic org.apache.commons.math3.util.FastMath.max:(DD)D
            dstore 13 /* size */
        start local 13 // double size
        10: .line 127
            dload 11 /* difference */
            dload 13 /* size */
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.optim.SimpleVectorValueChecker.getRelativeThreshold:()D
            dmul
            dcmpl
            ifle 13
        11: .line 128
            dload 11 /* difference */
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.optim.SimpleVectorValueChecker.getAbsoluteThreshold:()D
            dcmpl
            ifle 13
        12: .line 129
            iconst_0
            ireturn
        end local 13 // double size
        end local 11 // double difference
        end local 9 // double ci
        end local 7 // double pi
        13: .line 122
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 6 /* i */
            aload 4 /* p */
            arraylength
            if_icmplt 6
        end local 6 // int i
        15: .line 132
            iconst_1
            ireturn
        end local 5 // double[] c
        end local 4 // double[] p
        end local 3 // org.apache.commons.math3.optim.PointVectorValuePair current
        end local 2 // org.apache.commons.math3.optim.PointVectorValuePair previous
        end local 1 // int iteration
        end local 0 // org.apache.commons.math3.optim.SimpleVectorValueChecker this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   16     0        this  Lorg/apache/commons/math3/optim/SimpleVectorValueChecker;
            0   16     1   iteration  I
            0   16     2    previous  Lorg/apache/commons/math3/optim/PointVectorValuePair;
            0   16     3     current  Lorg/apache/commons/math3/optim/PointVectorValuePair;
            3   16     4           p  [D
            4   16     5           c  [D
            5   15     6           i  I
            7   13     7          pi  D
            8   13     9          ci  D
            9   13    11  difference  D
           10   13    13        size  D
    MethodParameters:
           Name  Flags
      iteration  final
      previous   final
      current    final

  public boolean converged(int, java.lang.Object, java.lang.Object);
    descriptor: (ILjava/lang/Object;Ljava/lang/Object;)Z
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            iload 1
            aload 2
            checkcast org.apache.commons.math3.optim.PointVectorValuePair
            aload 3
            checkcast org.apache.commons.math3.optim.PointVectorValuePair
            invokevirtual org.apache.commons.math3.optim.SimpleVectorValueChecker.converged:(ILorg/apache/commons/math3/optim/PointVectorValuePair;Lorg/apache/commons/math3/optim/PointVectorValuePair;)Z
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Lorg/apache/commons/math3/optim/AbstractConvergenceChecker<Lorg/apache/commons/math3/optim/PointVectorValuePair;>;
SourceFile: "SimpleVectorValueChecker.java"