public class org.apache.commons.math3.fitting.leastsquares.EvaluationRmsChecker implements org.apache.commons.math3.optim.ConvergenceChecker<org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.fitting.leastsquares.EvaluationRmsChecker
  super_class: java.lang.Object
{
  private final double relTol;
    descriptor: D
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final double absTol;
    descriptor: D
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(double);
    descriptor: (D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.fitting.leastsquares.EvaluationRmsChecker this
        start local 1 // double tol
         0: .line 46
            aload 0 /* this */
            dload 1 /* tol */
            dload 1 /* tol */
            invokespecial org.apache.commons.math3.fitting.leastsquares.EvaluationRmsChecker.<init>:(DD)V
         1: .line 47
            return
        end local 1 // double tol
        end local 0 // org.apache.commons.math3.fitting.leastsquares.EvaluationRmsChecker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/math3/fitting/leastsquares/EvaluationRmsChecker;
            0    2     1   tol  D
    MethodParameters:
      Name  Flags
      tol   final

  public void <init>(double, double);
    descriptor: (DD)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // org.apache.commons.math3.fitting.leastsquares.EvaluationRmsChecker this
        start local 1 // double relTol
        start local 3 // double absTol
         0: .line 60
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 61
            aload 0 /* this */
            dload 1 /* relTol */
            putfield org.apache.commons.math3.fitting.leastsquares.EvaluationRmsChecker.relTol:D
         2: .line 62
            aload 0 /* this */
            dload 3 /* absTol */
            putfield org.apache.commons.math3.fitting.leastsquares.EvaluationRmsChecker.absTol:D
         3: .line 63
            return
        end local 3 // double absTol
        end local 1 // double relTol
        end local 0 // org.apache.commons.math3.fitting.leastsquares.EvaluationRmsChecker this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/apache/commons/math3/fitting/leastsquares/EvaluationRmsChecker;
            0    4     1  relTol  D
            0    4     3  absTol  D
    MethodParameters:
        Name  Flags
      relTol  final
      absTol  final

  public boolean converged(int, org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation, org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation);
    descriptor: (ILorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem$Evaluation;Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem$Evaluation;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=8, args_size=4
        start local 0 // org.apache.commons.math3.fitting.leastsquares.EvaluationRmsChecker this
        start local 1 // int iteration
        start local 2 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation previous
        start local 3 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation current
         0: .line 69
            aload 2 /* previous */
            invokeinterface org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation.getRMS:()D
            dstore 4 /* prevRms */
        start local 4 // double prevRms
         1: .line 70
            aload 3 /* current */
            invokeinterface org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation.getRMS:()D
            dstore 6 /* currRms */
        start local 6 // double currRms
         2: .line 71
            dload 4 /* prevRms */
            dload 6 /* currRms */
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.leastsquares.EvaluationRmsChecker.absTol:D
            invokestatic org.apache.commons.math3.util.Precision.equals:(DDD)Z
            ifne 5
         3: .line 72
            dload 4 /* prevRms */
            dload 6 /* currRms */
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.leastsquares.EvaluationRmsChecker.relTol:D
            invokestatic org.apache.commons.math3.util.Precision.equalsWithRelativeTolerance:(DDD)Z
            ifne 5
         4: .line 71
            iconst_0
            ireturn
      StackMap locals: double double
      StackMap stack:
         5: iconst_1
            ireturn
        end local 6 // double currRms
        end local 4 // double prevRms
        end local 3 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation current
        end local 2 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation previous
        end local 1 // int iteration
        end local 0 // org.apache.commons.math3.fitting.leastsquares.EvaluationRmsChecker this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lorg/apache/commons/math3/fitting/leastsquares/EvaluationRmsChecker;
            0    6     1  iteration  I
            0    6     2   previous  Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem$Evaluation;
            0    6     3    current  Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem$Evaluation;
            1    6     4    prevRms  D
            2    6     6    currRms  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.fitting.leastsquares.LeastSquaresProblem$Evaluation
            aload 3
            checkcast org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation
            invokevirtual org.apache.commons.math3.fitting.leastsquares.EvaluationRmsChecker.converged:(ILorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem$Evaluation;Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem$Evaluation;)Z
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/lang/Object;Lorg/apache/commons/math3/optim/ConvergenceChecker<Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem$Evaluation;>;
SourceFile: "EvaluationRmsChecker.java"
InnerClasses:
  public abstract Evaluation = org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation of org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem