public class org.apache.commons.math3.analysis.solvers.NewtonSolver extends org.apache.commons.math3.analysis.solvers.AbstractDifferentiableUnivariateSolver
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.analysis.solvers.NewtonSolver
  super_class: org.apache.commons.math3.analysis.solvers.AbstractDifferentiableUnivariateSolver
{
  private static final double DEFAULT_ABSOLUTE_ACCURACY;
    descriptor: D
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1.0E-6

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.analysis.solvers.NewtonSolver this
         0: .line 41
            aload 0 /* this */
            ldc 1.0E-6
            invokespecial org.apache.commons.math3.analysis.solvers.NewtonSolver.<init>:(D)V
         1: .line 42
            return
        end local 0 // org.apache.commons.math3.analysis.solvers.NewtonSolver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/math3/analysis/solvers/NewtonSolver;

  public void <init>(double);
    descriptor: (D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.analysis.solvers.NewtonSolver this
        start local 1 // double absoluteAccuracy
         0: .line 49
            aload 0 /* this */
            dload 1 /* absoluteAccuracy */
            invokespecial org.apache.commons.math3.analysis.solvers.AbstractDifferentiableUnivariateSolver.<init>:(D)V
         1: .line 50
            return
        end local 1 // double absoluteAccuracy
        end local 0 // org.apache.commons.math3.analysis.solvers.NewtonSolver this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lorg/apache/commons/math3/analysis/solvers/NewtonSolver;
            0    2     1  absoluteAccuracy  D
    MethodParameters:
                  Name  Flags
      absoluteAccuracy  

  public double solve(int, org.apache.commons.math3.analysis.DifferentiableUnivariateFunction, double, double);
    descriptor: (ILorg/apache/commons/math3/analysis/DifferentiableUnivariateFunction;DD)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=7, args_size=5
        start local 0 // org.apache.commons.math3.analysis.solvers.NewtonSolver this
        start local 1 // int maxEval
        start local 2 // org.apache.commons.math3.analysis.DifferentiableUnivariateFunction f
        start local 3 // double min
        start local 5 // double max
         0: .line 69
            aload 0 /* this */
            iload 1 /* maxEval */
            aload 2 /* f */
            dload 3 /* min */
            dload 5 /* max */
            invokestatic org.apache.commons.math3.analysis.solvers.UnivariateSolverUtils.midpoint:(DD)D
            invokespecial org.apache.commons.math3.analysis.solvers.AbstractDifferentiableUnivariateSolver.solve:(ILorg/apache/commons/math3/analysis/UnivariateFunction;D)D
            dreturn
        end local 5 // double max
        end local 3 // double min
        end local 2 // org.apache.commons.math3.analysis.DifferentiableUnivariateFunction f
        end local 1 // int maxEval
        end local 0 // org.apache.commons.math3.analysis.solvers.NewtonSolver this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/apache/commons/math3/analysis/solvers/NewtonSolver;
            0    1     1  maxEval  I
            0    1     2        f  Lorg/apache/commons/math3/analysis/DifferentiableUnivariateFunction;
            0    1     3      min  D
            0    1     5      max  D
    Exceptions:
      throws org.apache.commons.math3.exception.TooManyEvaluationsException
    MethodParameters:
         Name  Flags
      maxEval  
      f        final
      min      final
      max      final

  protected double doSolve();
    descriptor: ()D
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=9, args_size=1
        start local 0 // org.apache.commons.math3.analysis.solvers.NewtonSolver this
         0: .line 78
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.analysis.solvers.NewtonSolver.getStartValue:()D
            dstore 1 /* startValue */
        start local 1 // double startValue
         1: .line 79
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.analysis.solvers.NewtonSolver.getAbsoluteAccuracy:()D
            dstore 3 /* absoluteAccuracy */
        start local 3 // double absoluteAccuracy
         2: .line 81
            dload 1 /* startValue */
            dstore 5 /* x0 */
        start local 5 // double x0
         3: .line 84
      StackMap locals: double double double
      StackMap stack:
            dload 5 /* x0 */
            aload 0 /* this */
            dload 5 /* x0 */
            invokevirtual org.apache.commons.math3.analysis.solvers.NewtonSolver.computeObjectiveValue:(D)D
            aload 0 /* this */
            dload 5 /* x0 */
            invokevirtual org.apache.commons.math3.analysis.solvers.NewtonSolver.computeDerivativeObjectiveValue:(D)D
            ddiv
            dsub
            dstore 7 /* x1 */
        start local 7 // double x1
         4: .line 85
            dload 7 /* x1 */
            dload 5 /* x0 */
            dsub
            invokestatic org.apache.commons.math3.util.FastMath.abs:(D)D
            dload 3 /* absoluteAccuracy */
            dcmpg
            ifgt 6
         5: .line 86
            dload 7 /* x1 */
            dreturn
         6: .line 89
      StackMap locals: double
      StackMap stack:
            dload 7 /* x1 */
            dstore 5 /* x0 */
        end local 7 // double x1
         7: .line 83
            goto 3
        end local 5 // double x0
        end local 3 // double absoluteAccuracy
        end local 1 // double startValue
        end local 0 // org.apache.commons.math3.analysis.solvers.NewtonSolver this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    8     0              this  Lorg/apache/commons/math3/analysis/solvers/NewtonSolver;
            1    8     1        startValue  D
            2    8     3  absoluteAccuracy  D
            3    8     5                x0  D
            4    7     7                x1  D
    Exceptions:
      throws org.apache.commons.math3.exception.TooManyEvaluationsException

  public double solve(int, org.apache.commons.math3.analysis.UnivariateFunction, double, double);
    descriptor: (ILorg/apache/commons/math3/analysis/UnivariateFunction;DD)D
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=7, locals=7, args_size=5
         0: .line 1
            aload 0
            iload 1
            aload 2
            checkcast org.apache.commons.math3.analysis.DifferentiableUnivariateFunction
            dload 3
            dload 5
            invokevirtual org.apache.commons.math3.analysis.solvers.NewtonSolver.solve:(ILorg/apache/commons/math3/analysis/DifferentiableUnivariateFunction;DD)D
            dreturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "NewtonSolver.java"
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()