public class org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm implements org.apache.commons.math3.analysis.differentiation.UnivariateDifferentiableFunction
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm
  super_class: java.lang.Object
{
  private double[] coefficients;
    descriptor: [D
    flags: (0x0002) ACC_PRIVATE

  private final double[] c;
    descriptor: [D
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final double[] a;
    descriptor: [D
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private boolean coefficientsComputed;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  public void <init>(double[], double[]);
    descriptor: ([D[D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm this
        start local 1 // double[] a
        start local 2 // double[] c
         0: .line 78
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 81
            aload 1 /* a */
            aload 2 /* c */
            invokestatic org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.verifyInputArray:([D[D)V
         2: .line 82
            aload 0 /* this */
            aload 1 /* a */
            arraylength
            newarray 7
            putfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.a:[D
         3: .line 83
            aload 0 /* this */
            aload 2 /* c */
            arraylength
            newarray 7
            putfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.c:[D
         4: .line 84
            aload 1 /* a */
            iconst_0
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.a:[D
            iconst_0
            aload 1 /* a */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 85
            aload 2 /* c */
            iconst_0
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.c:[D
            iconst_0
            aload 2 /* c */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 86
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.coefficientsComputed:Z
         7: .line 87
            return
        end local 2 // double[] c
        end local 1 // double[] a
        end local 0 // org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunctionNewtonForm;
            0    8     1     a  [D
            0    8     2     c  [D
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NoDataException, org.apache.commons.math3.exception.DimensionMismatchException
    MethodParameters:
      Name  Flags
      a     
      c     

  public double value(double);
    descriptor: (D)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm this
        start local 1 // double z
         0: .line 96
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.a:[D
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.c:[D
            dload 1 /* z */
            invokestatic org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.evaluate:([D[DD)D
            dreturn
        end local 1 // double z
        end local 0 // org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunctionNewtonForm;
            0    1     1     z  D
    MethodParameters:
      Name  Flags
      z     

  public org.apache.commons.math3.analysis.differentiation.DerivativeStructure value(org.apache.commons.math3.analysis.differentiation.DerivativeStructure);
    descriptor: (Lorg/apache/commons/math3/analysis/differentiation/DerivativeStructure;)Lorg/apache/commons/math3/analysis/differentiation/DerivativeStructure;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=2
        start local 0 // org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm this
        start local 1 // org.apache.commons.math3.analysis.differentiation.DerivativeStructure t
         0: .line 104
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.a:[D
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.c:[D
            invokestatic org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.verifyInputArray:([D[D)V
         1: .line 106
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.c:[D
            arraylength
            istore 2 /* n */
        start local 2 // int n
         2: .line 107
            new org.apache.commons.math3.analysis.differentiation.DerivativeStructure
            dup
            aload 1 /* t */
            invokevirtual org.apache.commons.math3.analysis.differentiation.DerivativeStructure.getFreeParameters:()I
            aload 1 /* t */
            invokevirtual org.apache.commons.math3.analysis.differentiation.DerivativeStructure.getOrder:()I
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.a:[D
            iload 2 /* n */
            daload
            invokespecial org.apache.commons.math3.analysis.differentiation.DerivativeStructure.<init>:(IID)V
            astore 3 /* value */
        start local 3 // org.apache.commons.math3.analysis.differentiation.DerivativeStructure value
         3: .line 108
            iload 2 /* n */
            iconst_1
            isub
            istore 4 /* i */
        start local 4 // int i
         4: goto 7
         5: .line 109
      StackMap locals: int org.apache.commons.math3.analysis.differentiation.DerivativeStructure int
      StackMap stack:
            aload 1 /* t */
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.c:[D
            iload 4 /* i */
            daload
            invokevirtual org.apache.commons.math3.analysis.differentiation.DerivativeStructure.subtract:(D)Lorg/apache/commons/math3/analysis/differentiation/DerivativeStructure;
            aload 3 /* value */
            invokevirtual org.apache.commons.math3.analysis.differentiation.DerivativeStructure.multiply:(Lorg/apache/commons/math3/analysis/differentiation/DerivativeStructure;)Lorg/apache/commons/math3/analysis/differentiation/DerivativeStructure;
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.a:[D
            iload 4 /* i */
            daload
            invokevirtual org.apache.commons.math3.analysis.differentiation.DerivativeStructure.add:(D)Lorg/apache/commons/math3/analysis/differentiation/DerivativeStructure;
            astore 3 /* value */
         6: .line 108
            iinc 4 /* i */ -1
      StackMap locals:
      StackMap stack:
         7: iload 4 /* i */
            ifge 5
        end local 4 // int i
         8: .line 112
            aload 3 /* value */
            areturn
        end local 3 // org.apache.commons.math3.analysis.differentiation.DerivativeStructure value
        end local 2 // int n
        end local 1 // org.apache.commons.math3.analysis.differentiation.DerivativeStructure t
        end local 0 // org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunctionNewtonForm;
            0    9     1      t  Lorg/apache/commons/math3/analysis/differentiation/DerivativeStructure;
            2    9     2      n  I
            3    9     3  value  Lorg/apache/commons/math3/analysis/differentiation/DerivativeStructure;
            4    8     4      i  I
    MethodParameters:
      Name  Flags
      t     final

  public int degree();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm this
         0: .line 122
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.c:[D
            arraylength
            ireturn
        end local 0 // org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunctionNewtonForm;

  public double[] getNewtonCoefficients();
    descriptor: ()[D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm this
         0: .line 133
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.a:[D
            arraylength
            newarray 7
            astore 1 /* out */
        start local 1 // double[] out
         1: .line 134
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.a:[D
            iconst_0
            aload 1 /* out */
            iconst_0
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.a:[D
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 135
            aload 1 /* out */
            areturn
        end local 1 // double[] out
        end local 0 // org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunctionNewtonForm;
            1    3     1   out  [D

  public double[] getCenters();
    descriptor: ()[D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm this
         0: .line 146
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.c:[D
            arraylength
            newarray 7
            astore 1 /* out */
        start local 1 // double[] out
         1: .line 147
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.c:[D
            iconst_0
            aload 1 /* out */
            iconst_0
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.c:[D
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 148
            aload 1 /* out */
            areturn
        end local 1 // double[] out
        end local 0 // org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunctionNewtonForm;
            1    3     1   out  [D

  public double[] getCoefficients();
    descriptor: ()[D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm this
         0: .line 159
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.coefficientsComputed:Z
            ifne 2
         1: .line 160
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.computeCoefficients:()V
         2: .line 162
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.coefficients:[D
            arraylength
            newarray 7
            astore 1 /* out */
        start local 1 // double[] out
         3: .line 163
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.coefficients:[D
            iconst_0
            aload 1 /* out */
            iconst_0
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.coefficients:[D
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 164
            aload 1 /* out */
            areturn
        end local 1 // double[] out
        end local 0 // org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunctionNewtonForm;
            3    5     1   out  [D

  public static double evaluate(double[], double[], double);
    descriptor: ([D[DD)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=8, args_size=3
        start local 0 // double[] a
        start local 1 // double[] c
        start local 2 // double z
         0: .line 183
            aload 0 /* a */
            aload 1 /* c */
            invokestatic org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.verifyInputArray:([D[D)V
         1: .line 185
            aload 1 /* c */
            arraylength
            istore 4 /* n */
        start local 4 // int n
         2: .line 186
            aload 0 /* a */
            iload 4 /* n */
            daload
            dstore 5 /* value */
        start local 5 // double value
         3: .line 187
            iload 4 /* n */
            iconst_1
            isub
            istore 7 /* i */
        start local 7 // int i
         4: goto 7
         5: .line 188
      StackMap locals: int double int
      StackMap stack:
            aload 0 /* a */
            iload 7 /* i */
            daload
            dload 2 /* z */
            aload 1 /* c */
            iload 7 /* i */
            daload
            dsub
            dload 5 /* value */
            dmul
            dadd
            dstore 5 /* value */
         6: .line 187
            iinc 7 /* i */ -1
      StackMap locals:
      StackMap stack:
         7: iload 7 /* i */
            ifge 5
        end local 7 // int i
         8: .line 191
            dload 5 /* value */
            dreturn
        end local 5 // double value
        end local 4 // int n
        end local 2 // double z
        end local 1 // double[] c
        end local 0 // double[] a
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0      a  [D
            0    9     1      c  [D
            0    9     2      z  D
            2    9     4      n  I
            3    9     5  value  D
            4    8     7      i  I
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.NoDataException
    MethodParameters:
      Name  Flags
      a     
      c     
      z     

  protected void computeCoefficients();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=8, locals=4, args_size=1
        start local 0 // org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm this
         0: .line 199
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.degree:()I
            istore 1 /* n */
        start local 1 // int n
         1: .line 201
            aload 0 /* this */
            iload 1 /* n */
            iconst_1
            iadd
            newarray 7
            putfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.coefficients:[D
         2: .line 202
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         3: goto 6
         4: .line 203
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.coefficients:[D
            iload 2 /* i */
            dconst_0
            dastore
         5: .line 202
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 2 /* i */
            iload 1 /* n */
            if_icmple 4
        end local 2 // int i
         7: .line 206
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.coefficients:[D
            iconst_0
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.a:[D
            iload 1 /* n */
            daload
            dastore
         8: .line 207
            iload 1 /* n */
            iconst_1
            isub
            istore 2 /* i */
        start local 2 // int i
         9: goto 17
        10: .line 208
      StackMap locals:
      StackMap stack:
            iload 1 /* n */
            iload 2 /* i */
            isub
            istore 3 /* j */
        start local 3 // int j
        11: goto 14
        12: .line 209
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.coefficients:[D
            iload 3 /* j */
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.coefficients:[D
            iload 3 /* j */
            iconst_1
            isub
            daload
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.c:[D
            iload 2 /* i */
            daload
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.coefficients:[D
            iload 3 /* j */
            daload
            dmul
            dsub
            dastore
        13: .line 208
            iinc 3 /* j */ -1
      StackMap locals:
      StackMap stack:
        14: iload 3 /* j */
            ifgt 12
        end local 3 // int j
        15: .line 211
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.coefficients:[D
            iconst_0
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.a:[D
            iload 2 /* i */
            daload
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.c:[D
            iload 2 /* i */
            daload
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.coefficients:[D
            iconst_0
            daload
            dmul
            dsub
            dastore
        16: .line 207
            iinc 2 /* i */ -1
      StackMap locals:
      StackMap stack:
        17: iload 2 /* i */
            ifge 10
        end local 2 // int i
        18: .line 214
            aload 0 /* this */
            iconst_1
            putfield org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm.coefficientsComputed:Z
        19: .line 215
            return
        end local 1 // int n
        end local 0 // org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   20     0  this  Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunctionNewtonForm;
            1   20     1     n  I
            3    7     2     i  I
            9   18     2     i  I
           11   15     3     j  I

  protected static void verifyInputArray(double[], double[]);
    descriptor: ([D[D)V
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // double[] a
        start local 1 // double[] c
         0: .line 234
            aload 0 /* a */
            invokestatic org.apache.commons.math3.util.MathUtils.checkNotNull:(Ljava/lang/Object;)V
         1: .line 235
            aload 1 /* c */
            invokestatic org.apache.commons.math3.util.MathUtils.checkNotNull:(Ljava/lang/Object;)V
         2: .line 236
            aload 0 /* a */
            arraylength
            ifeq 3
            aload 1 /* c */
            arraylength
            ifne 4
         3: .line 237
      StackMap locals:
      StackMap stack:
            new org.apache.commons.math3.exception.NoDataException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.EMPTY_POLYNOMIALS_COEFFICIENTS_ARRAY:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
            invokespecial org.apache.commons.math3.exception.NoDataException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;)V
            athrow
         4: .line 239
      StackMap locals:
      StackMap stack:
            aload 0 /* a */
            arraylength
            aload 1 /* c */
            arraylength
            iconst_1
            iadd
            if_icmpeq 8
         5: .line 240
            new org.apache.commons.math3.exception.DimensionMismatchException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.ARRAY_SIZES_SHOULD_HAVE_DIFFERENCE_1:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
         6: .line 241
            aload 0 /* a */
            arraylength
            aload 1 /* c */
            arraylength
         7: .line 240
            invokespecial org.apache.commons.math3.exception.DimensionMismatchException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;II)V
            athrow
         8: .line 243
      StackMap locals:
      StackMap stack:
            return
        end local 1 // double[] c
        end local 0 // double[] a
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0     a  [D
            0    9     1     c  [D
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NoDataException, org.apache.commons.math3.exception.DimensionMismatchException
    MethodParameters:
      Name  Flags
      a     
      c     
}
SourceFile: "PolynomialFunctionNewtonForm.java"