public class org.apache.commons.math3.optim.SimpleValueChecker extends org.apache.commons.math3.optim.AbstractConvergenceChecker<org.apache.commons.math3.optim.PointValuePair>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.optim.SimpleValueChecker
  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.SimpleValueChecker this
        start local 1 // double relativeThreshold
        start local 3 // double absoluteThreshold
         0: .line 65
            aload 0 /* this */
            dload 1 /* relativeThreshold */
            dload 3 /* absoluteThreshold */
            invokespecial org.apache.commons.math3.optim.AbstractConvergenceChecker.<init>:(DD)V
         1: .line 66
            aload 0 /* this */
            iconst_m1
            putfield org.apache.commons.math3.optim.SimpleValueChecker.maxIterationCount:I
         2: .line 67
            return
        end local 3 // double absoluteThreshold
        end local 1 // double relativeThreshold
        end local 0 // org.apache.commons.math3.optim.SimpleValueChecker this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    3     0               this  Lorg/apache/commons/math3/optim/SimpleValueChecker;
            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.SimpleValueChecker this
        start local 1 // double relativeThreshold
        start local 3 // double absoluteThreshold
        start local 5 // int maxIter
         0: .line 86
            aload 0 /* this */
            dload 1 /* relativeThreshold */
            dload 3 /* absoluteThreshold */
            invokespecial org.apache.commons.math3.optim.AbstractConvergenceChecker.<init>:(DD)V
         1: .line 88
            iload 5 /* maxIter */
            ifgt 3
         2: .line 89
            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 91
      StackMap locals: org.apache.commons.math3.optim.SimpleValueChecker double double int
      StackMap stack:
            aload 0 /* this */
            iload 5 /* maxIter */
            putfield org.apache.commons.math3.optim.SimpleValueChecker.maxIterationCount:I
         4: .line 92
            return
        end local 5 // int maxIter
        end local 3 // double absoluteThreshold
        end local 1 // double relativeThreshold
        end local 0 // org.apache.commons.math3.optim.SimpleValueChecker this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    5     0               this  Lorg/apache/commons/math3/optim/SimpleValueChecker;
            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.PointValuePair, org.apache.commons.math3.optim.PointValuePair);
    descriptor: (ILorg/apache/commons/math3/optim/PointValuePair;Lorg/apache/commons/math3/optim/PointValuePair;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=12, args_size=4
        start local 0 // org.apache.commons.math3.optim.SimpleValueChecker this
        start local 1 // int iteration
        start local 2 // org.apache.commons.math3.optim.PointValuePair previous
        start local 3 // org.apache.commons.math3.optim.PointValuePair current
         0: .line 114
            aload 0 /* this */
            getfield org.apache.commons.math3.optim.SimpleValueChecker.maxIterationCount:I
            iconst_m1
            if_icmpeq 2
            iload 1 /* iteration */
            aload 0 /* this */
            getfield org.apache.commons.math3.optim.SimpleValueChecker.maxIterationCount:I
            if_icmplt 2
         1: .line 115
            iconst_1
            ireturn
         2: .line 118
      StackMap locals:
      StackMap stack:
            aload 2 /* previous */
            invokevirtual org.apache.commons.math3.optim.PointValuePair.getValue:()Ljava/lang/Object;
            checkcast java.lang.Double
            invokevirtual java.lang.Double.doubleValue:()D
            dstore 4 /* p */
        start local 4 // double p
         3: .line 119
            aload 3 /* current */
            invokevirtual org.apache.commons.math3.optim.PointValuePair.getValue:()Ljava/lang/Object;
            checkcast java.lang.Double
            invokevirtual java.lang.Double.doubleValue:()D
            dstore 6 /* c */
        start local 6 // double c
         4: .line 120
            dload 4 /* p */
            dload 6 /* c */
            dsub
            invokestatic org.apache.commons.math3.util.FastMath.abs:(D)D
            dstore 8 /* difference */
        start local 8 // double difference
         5: .line 121
            dload 4 /* p */
            invokestatic org.apache.commons.math3.util.FastMath.abs:(D)D
            dload 6 /* c */
            invokestatic org.apache.commons.math3.util.FastMath.abs:(D)D
            invokestatic org.apache.commons.math3.util.FastMath.max:(DD)D
            dstore 10 /* size */
        start local 10 // double size
         6: .line 122
            dload 8 /* difference */
            dload 10 /* size */
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.optim.SimpleValueChecker.getRelativeThreshold:()D
            dmul
            dcmpg
            ifle 9
         7: .line 123
            dload 8 /* difference */
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.optim.SimpleValueChecker.getAbsoluteThreshold:()D
         8: .line 122
            dcmpg
            ifle 9
            iconst_0
            ireturn
      StackMap locals: org.apache.commons.math3.optim.SimpleValueChecker int org.apache.commons.math3.optim.PointValuePair org.apache.commons.math3.optim.PointValuePair double double double double
      StackMap stack:
         9: iconst_1
            ireturn
        end local 10 // double size
        end local 8 // double difference
        end local 6 // double c
        end local 4 // double p
        end local 3 // org.apache.commons.math3.optim.PointValuePair current
        end local 2 // org.apache.commons.math3.optim.PointValuePair previous
        end local 1 // int iteration
        end local 0 // org.apache.commons.math3.optim.SimpleValueChecker this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0        this  Lorg/apache/commons/math3/optim/SimpleValueChecker;
            0   10     1   iteration  I
            0   10     2    previous  Lorg/apache/commons/math3/optim/PointValuePair;
            0   10     3     current  Lorg/apache/commons/math3/optim/PointValuePair;
            3   10     4           p  D
            4   10     6           c  D
            5   10     8  difference  D
            6   10    10        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.PointValuePair
            aload 3
            checkcast org.apache.commons.math3.optim.PointValuePair
            invokevirtual org.apache.commons.math3.optim.SimpleValueChecker.converged:(ILorg/apache/commons/math3/optim/PointValuePair;Lorg/apache/commons/math3/optim/PointValuePair;)Z
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Lorg/apache/commons/math3/optim/AbstractConvergenceChecker<Lorg/apache/commons/math3/optim/PointValuePair;>;
SourceFile: "SimpleValueChecker.java"