public class org.apache.commons.math3.analysis.solvers.NewtonRaphsonSolver extends org.apache.commons.math3.analysis.solvers.AbstractUnivariateDifferentiableSolver
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.analysis.solvers.NewtonRaphsonSolver
  super_class: org.apache.commons.math3.analysis.solvers.AbstractUnivariateDifferentiableSolver
{
  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.NewtonRaphsonSolver this
         0: .line 40
            aload 0 /* this */
            ldc 1.0E-6
            invokespecial org.apache.commons.math3.analysis.solvers.NewtonRaphsonSolver.<init>:(D)V
         1: .line 41
            return
        end local 0 // org.apache.commons.math3.analysis.solvers.NewtonRaphsonSolver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/math3/analysis/solvers/NewtonRaphsonSolver;

  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.NewtonRaphsonSolver this
        start local 1 // double absoluteAccuracy
         0: .line 48
            aload 0 /* this */
            dload 1 /* absoluteAccuracy */
            invokespecial org.apache.commons.math3.analysis.solvers.AbstractUnivariateDifferentiableSolver.<init>:(D)V
         1: .line 49
            return
        end local 1 // double absoluteAccuracy
        end local 0 // org.apache.commons.math3.analysis.solvers.NewtonRaphsonSolver this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lorg/apache/commons/math3/analysis/solvers/NewtonRaphsonSolver;
            0    2     1  absoluteAccuracy  D
    MethodParameters:
                  Name  Flags
      absoluteAccuracy  

  public double solve(int, org.apache.commons.math3.analysis.differentiation.UnivariateDifferentiableFunction, double, double);
    descriptor: (ILorg/apache/commons/math3/analysis/differentiation/UnivariateDifferentiableFunction;DD)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=7, args_size=5
        start local 0 // org.apache.commons.math3.analysis.solvers.NewtonRaphsonSolver this
        start local 1 // int maxEval
        start local 2 // org.apache.commons.math3.analysis.differentiation.UnivariateDifferentiableFunction f
        start local 3 // double min
        start local 5 // double max
         0: .line 68
            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.AbstractUnivariateDifferentiableSolver.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.differentiation.UnivariateDifferentiableFunction f
        end local 1 // int maxEval
        end local 0 // org.apache.commons.math3.analysis.solvers.NewtonRaphsonSolver this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/apache/commons/math3/analysis/solvers/NewtonRaphsonSolver;
            0    1     1  maxEval  I
            0    1     2        f  Lorg/apache/commons/math3/analysis/differentiation/UnivariateDifferentiableFunction;
            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=9, locals=10, args_size=1
        start local 0 // org.apache.commons.math3.analysis.solvers.NewtonRaphsonSolver this
         0: .line 77
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.analysis.solvers.NewtonRaphsonSolver.getStartValue:()D
            dstore 1 /* startValue */
        start local 1 // double startValue
         1: .line 78
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.analysis.solvers.NewtonRaphsonSolver.getAbsoluteAccuracy:()D
            dstore 3 /* absoluteAccuracy */
        start local 3 // double absoluteAccuracy
         2: .line 80
            dload 1 /* startValue */
            dstore 5 /* x0 */
        start local 5 // double x0
         3: .line 83
      StackMap locals: double double double
      StackMap stack:
            aload 0 /* this */
            dload 5 /* x0 */
            invokevirtual org.apache.commons.math3.analysis.solvers.NewtonRaphsonSolver.computeObjectiveValueAndDerivative:(D)Lorg/apache/commons/math3/analysis/differentiation/DerivativeStructure;
            astore 9 /* y0 */
        start local 9 // org.apache.commons.math3.analysis.differentiation.DerivativeStructure y0
         4: .line 84
            dload 5 /* x0 */
            aload 9 /* y0 */
            invokevirtual org.apache.commons.math3.analysis.differentiation.DerivativeStructure.getValue:()D
            aload 9 /* y0 */
            iconst_1
            newarray 10
            dup
            iconst_0
            iconst_1
            iastore
            invokevirtual org.apache.commons.math3.analysis.differentiation.DerivativeStructure.getPartialDerivative:([I)D
            ddiv
            dsub
            dstore 7 /* x1 */
        start local 7 // double x1
         5: .line 85
            dload 7 /* x1 */
            dload 5 /* x0 */
            dsub
            invokestatic org.apache.commons.math3.util.FastMath.abs:(D)D
            dload 3 /* absoluteAccuracy */
            dcmpg
            ifgt 7
         6: .line 86
            dload 7 /* x1 */
            dreturn
         7: .line 89
      StackMap locals: double org.apache.commons.math3.analysis.differentiation.DerivativeStructure
      StackMap stack:
            dload 7 /* x1 */
            dstore 5 /* x0 */
        end local 9 // org.apache.commons.math3.analysis.differentiation.DerivativeStructure y0
        end local 7 // double x1
         8: .line 82
            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.NewtonRaphsonSolver this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    9     0              this  Lorg/apache/commons/math3/analysis/solvers/NewtonRaphsonSolver;
            1    9     1        startValue  D
            2    9     3  absoluteAccuracy  D
            3    9     5                x0  D
            5    8     7                x1  D
            4    8     9                y0  Lorg/apache/commons/math3/analysis/differentiation/DerivativeStructure;
    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.differentiation.UnivariateDifferentiableFunction
            dload 3
            dload 5
            invokevirtual org.apache.commons.math3.analysis.solvers.NewtonRaphsonSolver.solve:(ILorg/apache/commons/math3/analysis/differentiation/UnivariateDifferentiableFunction;DD)D
            dreturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "NewtonRaphsonSolver.java"