public class org.apache.commons.math3.analysis.polynomials.PolynomialFunction implements org.apache.commons.math3.analysis.differentiation.UnivariateDifferentiableFunction, org.apache.commons.math3.analysis.DifferentiableUnivariateFunction, java.io.Serializable
minor version: 0
major version: 59
flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
this_class: org.apache.commons.math3.analysis.polynomials.PolynomialFunction
super_class: java.lang.Object
{
private static final long serialVersionUID;
descriptor: J
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
ConstantValue: -7726511984200295583
private final double[] coefficients;
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 start local 1 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: aload 1
invokestatic org.apache.commons.math3.util.MathUtils.checkNotNull:(Ljava/lang/Object;)V
2: aload 1
arraylength
istore 2
start local 2 3: iload 2
ifne 6
4: 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
5: StackMap locals: org.apache.commons.math3.analysis.polynomials.PolynomialFunction double[] int
StackMap stack:
iinc 2 -1
6: StackMap locals:
StackMap stack:
iload 2
iconst_1
if_icmple 7
aload 1
iload 2
iconst_1
isub
daload
dconst_0
dcmpl
ifeq 5
7: StackMap locals:
StackMap stack:
aload 0
iload 2
newarray 7
putfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
8: aload 1
iconst_0
aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
iconst_0
iload 2
invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
9: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 10 0 this Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
0 10 1 c [D
3 10 2 n I
Exceptions:
throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NoDataException
MethodParameters:
Name Flags
c
public double value(double);
descriptor: (D)D
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=2
start local 0 start local 1 0: aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
dload 1
invokestatic org.apache.commons.math3.analysis.polynomials.PolynomialFunction.evaluate:([DD)D
dreturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
0 1 1 x D
MethodParameters:
Name Flags
x
public int degree();
descriptor: ()I
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
arraylength
iconst_1
isub
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
public double[] getCoefficients();
descriptor: ()[D
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
invokevirtual double[].clone:()Ljava/lang/Object;
checkcast double[]
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
protected static double evaluate(double[], double);
descriptor: ([DD)D
flags: (0x000c) ACC_PROTECTED, ACC_STATIC
Code:
stack=4, locals=7, args_size=2
start local 0 start local 1 0: aload 0
invokestatic org.apache.commons.math3.util.MathUtils.checkNotNull:(Ljava/lang/Object;)V
1: aload 0
arraylength
istore 3
start local 3 2: iload 3
ifne 4
3: 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: StackMap locals: int
StackMap stack:
aload 0
iload 3
iconst_1
isub
daload
dstore 4
start local 4 5: iload 3
iconst_2
isub
istore 6
start local 6 6: goto 9
7: StackMap locals: double int
StackMap stack:
dload 1
dload 4
dmul
aload 0
iload 6
daload
dadd
dstore 4
8: iinc 6 -1
StackMap locals:
StackMap stack:
9: iload 6
ifge 7
end local 6 10: dload 4
dreturn
end local 4 end local 3 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 11 0 coefficients [D
0 11 1 argument D
2 11 3 n I
5 11 4 result D
6 10 6 j I
Exceptions:
throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NoDataException
MethodParameters:
Name Flags
coefficients
argument
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=7, locals=5, args_size=2
start local 0 start local 1 0: aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
invokestatic org.apache.commons.math3.util.MathUtils.checkNotNull:(Ljava/lang/Object;)V
1: aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
arraylength
istore 2
start local 2 2: iload 2
ifne 4
3: 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: StackMap locals: int
StackMap stack:
new org.apache.commons.math3.analysis.differentiation.DerivativeStructure
dup
aload 1
invokevirtual org.apache.commons.math3.analysis.differentiation.DerivativeStructure.getFreeParameters:()I
aload 1
invokevirtual org.apache.commons.math3.analysis.differentiation.DerivativeStructure.getOrder:()I
aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
iload 2
iconst_1
isub
daload
invokespecial org.apache.commons.math3.analysis.differentiation.DerivativeStructure.<init>:(IID)V
5: astore 3
start local 3 6: iload 2
iconst_2
isub
istore 4
start local 4 7: goto 10
8: StackMap locals: org.apache.commons.math3.analysis.differentiation.DerivativeStructure int
StackMap stack:
aload 3
aload 1
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
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
iload 4
daload
invokevirtual org.apache.commons.math3.analysis.differentiation.DerivativeStructure.add:(D)Lorg/apache/commons/math3/analysis/differentiation/DerivativeStructure;
astore 3
9: iinc 4 -1
StackMap locals:
StackMap stack:
10: iload 4
ifge 8
end local 4 11: aload 3
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 12 0 this Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
0 12 1 t Lorg/apache/commons/math3/analysis/differentiation/DerivativeStructure;
2 12 2 n I
6 12 3 result Lorg/apache/commons/math3/analysis/differentiation/DerivativeStructure;
7 11 4 j I
Exceptions:
throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NoDataException
MethodParameters:
Name Flags
t final
public org.apache.commons.math3.analysis.polynomials.PolynomialFunction add(org.apache.commons.math3.analysis.polynomials.PolynomialFunction);
descriptor: (Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;)Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
flags: (0x0001) ACC_PUBLIC
Code:
stack=6, locals=6, args_size=2
start local 0 start local 1 0: aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
arraylength
aload 1
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
arraylength
invokestatic org.apache.commons.math3.util.FastMath.min:(II)I
istore 2
start local 2 1: aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
arraylength
aload 1
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
arraylength
invokestatic org.apache.commons.math3.util.FastMath.max:(II)I
istore 3
start local 3 2: iload 3
newarray 7
astore 4
start local 4 3: iconst_0
istore 5
start local 5 4: goto 7
5: StackMap locals: org.apache.commons.math3.analysis.polynomials.PolynomialFunction org.apache.commons.math3.analysis.polynomials.PolynomialFunction int int double[] int
StackMap stack:
aload 4
iload 5
aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
iload 5
daload
aload 1
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
iload 5
daload
dadd
dastore
6: iinc 5 1
StackMap locals:
StackMap stack:
7: iload 5
iload 2
if_icmplt 5
end local 5 8: aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
arraylength
aload 1
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
arraylength
if_icmpge 10
9: aload 1
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
goto 11
StackMap locals:
StackMap stack:
10: aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
11: StackMap locals:
StackMap stack: double[]
iload 2
12: aload 4
iload 2
13: iload 3
iload 2
isub
14: invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
15: new org.apache.commons.math3.analysis.polynomials.PolynomialFunction
dup
aload 4
invokespecial org.apache.commons.math3.analysis.polynomials.PolynomialFunction.<init>:([D)V
areturn
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 16 0 this Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
0 16 1 p Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
1 16 2 lowLength I
2 16 3 highLength I
3 16 4 newCoefficients [D
4 8 5 i I
MethodParameters:
Name Flags
p final
public org.apache.commons.math3.analysis.polynomials.PolynomialFunction subtract(org.apache.commons.math3.analysis.polynomials.PolynomialFunction);
descriptor: (Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;)Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
flags: (0x0001) ACC_PUBLIC
Code:
stack=6, locals=6, args_size=2
start local 0 start local 1 0: aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
arraylength
aload 1
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
arraylength
invokestatic org.apache.commons.math3.util.FastMath.min:(II)I
istore 2
start local 2 1: aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
arraylength
aload 1
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
arraylength
invokestatic org.apache.commons.math3.util.FastMath.max:(II)I
istore 3
start local 3 2: iload 3
newarray 7
astore 4
start local 4 3: iconst_0
istore 5
start local 5 4: goto 7
5: StackMap locals: org.apache.commons.math3.analysis.polynomials.PolynomialFunction org.apache.commons.math3.analysis.polynomials.PolynomialFunction int int double[] int
StackMap stack:
aload 4
iload 5
aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
iload 5
daload
aload 1
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
iload 5
daload
dsub
dastore
6: iinc 5 1
StackMap locals:
StackMap stack:
7: iload 5
iload 2
if_icmplt 5
end local 5 8: aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
arraylength
aload 1
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
arraylength
if_icmpge 15
9: iload 2
istore 5
start local 5 10: goto 13
11: StackMap locals:
StackMap stack:
aload 4
iload 5
aload 1
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
iload 5
daload
dneg
dastore
12: iinc 5 1
StackMap locals:
StackMap stack:
13: iload 5
iload 3
if_icmplt 11
end local 5 14: goto 18
15: StackMap locals:
StackMap stack:
aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
iload 2
aload 4
iload 2
16: iload 3
iload 2
isub
17: invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
18: StackMap locals:
StackMap stack:
new org.apache.commons.math3.analysis.polynomials.PolynomialFunction
dup
aload 4
invokespecial org.apache.commons.math3.analysis.polynomials.PolynomialFunction.<init>:([D)V
areturn
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 19 0 this Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
0 19 1 p Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
1 19 2 lowLength I
2 19 3 highLength I
3 19 4 newCoefficients [D
4 8 5 i I
10 14 5 i I
MethodParameters:
Name Flags
p final
public org.apache.commons.math3.analysis.polynomials.PolynomialFunction negate();
descriptor: ()Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=1
start local 0 0: aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
arraylength
newarray 7
astore 1
start local 1 1: iconst_0
istore 2
start local 2 2: goto 5
3: StackMap locals: double[] int
StackMap stack:
aload 1
iload 2
aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
iload 2
daload
dneg
dastore
4: iinc 2 1
StackMap locals:
StackMap stack:
5: iload 2
aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
arraylength
if_icmplt 3
end local 2 6: new org.apache.commons.math3.analysis.polynomials.PolynomialFunction
dup
aload 1
invokespecial org.apache.commons.math3.analysis.polynomials.PolynomialFunction.<init>:([D)V
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 7 0 this Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
1 7 1 newCoefficients [D
2 6 2 i I
public org.apache.commons.math3.analysis.polynomials.PolynomialFunction multiply(org.apache.commons.math3.analysis.polynomials.PolynomialFunction);
descriptor: (Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;)Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
flags: (0x0001) ACC_PUBLIC
Code:
stack=9, locals=5, args_size=2
start local 0 start local 1 0: aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
arraylength
aload 1
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
arraylength
iadd
iconst_1
isub
newarray 7
astore 2
start local 2 1: iconst_0
istore 3
start local 3 2: goto 11
3: StackMap locals: double[] int
StackMap stack:
aload 2
iload 3
dconst_0
dastore
4: iconst_0
iload 3
iconst_1
iadd
aload 1
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
arraylength
isub
invokestatic org.apache.commons.math3.util.FastMath.max:(II)I
istore 4
start local 4 5: goto 8
6: StackMap locals: int
StackMap stack:
aload 2
iload 3
dup2
daload
aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
iload 4
daload
aload 1
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
iload 3
iload 4
isub
daload
dmul
dadd
dastore
7: iinc 4 1
8: StackMap locals:
StackMap stack:
iload 4
aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
arraylength
iload 3
iconst_1
iadd
invokestatic org.apache.commons.math3.util.FastMath.min:(II)I
9: if_icmplt 6
end local 4 10: iinc 3 1
StackMap locals:
StackMap stack:
11: iload 3
aload 2
arraylength
if_icmplt 3
end local 3 12: new org.apache.commons.math3.analysis.polynomials.PolynomialFunction
dup
aload 2
invokespecial org.apache.commons.math3.analysis.polynomials.PolynomialFunction.<init>:([D)V
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 13 0 this Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
0 13 1 p Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
1 13 2 newCoefficients [D
2 12 3 i I
5 10 4 j I
MethodParameters:
Name Flags
p final
protected static double[] differentiate(double[]);
descriptor: ([D)[D
flags: (0x000c) ACC_PROTECTED, ACC_STATIC
Code:
stack=6, locals=4, args_size=1
start local 0 0: aload 0
invokestatic org.apache.commons.math3.util.MathUtils.checkNotNull:(Ljava/lang/Object;)V
1: aload 0
arraylength
istore 1
start local 1 2: iload 1
ifne 4
3: 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: StackMap locals: int
StackMap stack:
iload 1
iconst_1
if_icmpne 6
5: iconst_1
newarray 7
dup
iconst_0
dconst_0
dastore
areturn
6: StackMap locals:
StackMap stack:
iload 1
iconst_1
isub
newarray 7
astore 2
start local 2 7: iload 1
iconst_1
isub
istore 3
start local 3 8: goto 11
9: StackMap locals: double[] int
StackMap stack:
aload 2
iload 3
iconst_1
isub
iload 3
i2d
aload 0
iload 3
daload
dmul
dastore
10: iinc 3 -1
StackMap locals:
StackMap stack:
11: iload 3
ifgt 9
end local 3 12: aload 2
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 13 0 coefficients [D
2 13 1 n I
7 13 2 result [D
8 12 3 i I
Exceptions:
throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NoDataException
MethodParameters:
Name Flags
coefficients
public org.apache.commons.math3.analysis.polynomials.PolynomialFunction polynomialDerivative();
descriptor: ()Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: new org.apache.commons.math3.analysis.polynomials.PolynomialFunction
dup
aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
invokestatic org.apache.commons.math3.analysis.polynomials.PolynomialFunction.differentiate:([D)[D
invokespecial org.apache.commons.math3.analysis.polynomials.PolynomialFunction.<init>:([D)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
public org.apache.commons.math3.analysis.UnivariateFunction derivative();
descriptor: ()Lorg/apache/commons/math3/analysis/UnivariateFunction;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokevirtual org.apache.commons.math3.analysis.polynomials.PolynomialFunction.polynomialDerivative:()Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
public java.lang.String toString();
descriptor: ()Ljava/lang/String;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=5, args_size=1
start local 0 0: new java.lang.StringBuilder
dup
invokespecial java.lang.StringBuilder.<init>:()V
astore 1
start local 1 1: aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
iconst_0
daload
dconst_0
dcmpl
ifne 4
2: aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
arraylength
iconst_1
if_icmpne 5
3: ldc "0"
areturn
4: StackMap locals: java.lang.StringBuilder
StackMap stack:
aload 1
aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
iconst_0
daload
invokestatic org.apache.commons.math3.analysis.polynomials.PolynomialFunction.toString:(D)Ljava/lang/String;
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
pop
5: StackMap locals:
StackMap stack:
iconst_1
istore 2
start local 2 6: goto 25
7: StackMap locals: int
StackMap stack:
aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
iload 2
daload
dconst_0
dcmpl
ifeq 24
8: aload 1
invokevirtual java.lang.StringBuilder.length:()I
ifle 14
9: aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
iload 2
daload
dconst_0
dcmpg
ifge 12
10: aload 1
ldc " - "
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
pop
11: goto 16
12: StackMap locals:
StackMap stack:
aload 1
ldc " + "
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
pop
13: goto 16
14: StackMap locals:
StackMap stack:
aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
iload 2
daload
dconst_0
dcmpg
ifge 16
15: aload 1
ldc "-"
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
pop
16: StackMap locals:
StackMap stack:
aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
iload 2
daload
invokestatic org.apache.commons.math3.util.FastMath.abs:(D)D
dstore 3
start local 3 17: dload 3
dconst_1
dsub
dconst_0
dcmpl
ifeq 20
18: aload 1
dload 3
invokestatic org.apache.commons.math3.analysis.polynomials.PolynomialFunction.toString:(D)Ljava/lang/String;
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
pop
19: aload 1
bipush 32
invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
pop
20: StackMap locals: double
StackMap stack:
aload 1
ldc "x"
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
pop
21: iload 2
iconst_1
if_icmple 24
22: aload 1
bipush 94
invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
pop
23: aload 1
iload 2
invokestatic java.lang.Integer.toString:(I)Ljava/lang/String;
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
pop
end local 3 24: StackMap locals:
StackMap stack:
iinc 2 1
StackMap locals:
StackMap stack:
25: iload 2
aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
arraylength
if_icmplt 7
end local 2 26: aload 1
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 27 0 this Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
1 27 1 s Ljava/lang/StringBuilder;
6 26 2 i I
17 24 3 absAi D
private static java.lang.String toString(double);
descriptor: (D)Ljava/lang/String;
flags: (0x000a) ACC_PRIVATE, ACC_STATIC
Code:
stack=4, locals=3, args_size=1
start local 0 0: dload 0
invokestatic java.lang.Double.toString:(D)Ljava/lang/String;
astore 2
start local 2 1: aload 2
ldc ".0"
invokevirtual java.lang.String.endsWith:(Ljava/lang/String;)Z
ifeq 3
2: aload 2
iconst_0
aload 2
invokevirtual java.lang.String.length:()I
iconst_2
isub
invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
areturn
3: StackMap locals: java.lang.String
StackMap stack:
aload 2
areturn
end local 2 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 coeff D
1 4 2 c Ljava/lang/String;
MethodParameters:
Name Flags
coeff
public int hashCode();
descriptor: ()I
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=1
start local 0 0: iconst_1
istore 1
start local 1 1: bipush 31
iload 1
imul
aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
invokestatic java.util.Arrays.hashCode:([D)I
iadd
istore 1
2: iload 1
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
1 3 1 result I
public boolean equals(java.lang.Object);
descriptor: (Ljava/lang/Object;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=3, args_size=2
start local 0 start local 1 0: aload 0
aload 1
if_acmpne 2
1: iconst_1
ireturn
2: StackMap locals:
StackMap stack:
aload 1
instanceof org.apache.commons.math3.analysis.polynomials.PolynomialFunction
ifne 4
3: iconst_0
ireturn
4: StackMap locals:
StackMap stack:
aload 1
checkcast org.apache.commons.math3.analysis.polynomials.PolynomialFunction
astore 2
start local 2 5: aload 0
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
aload 2
getfield org.apache.commons.math3.analysis.polynomials.PolynomialFunction.coefficients:[D
invokestatic java.util.Arrays.equals:([D[D)Z
ifne 7
6: iconst_0
ireturn
7: StackMap locals: org.apache.commons.math3.analysis.polynomials.PolynomialFunction
StackMap stack:
iconst_1
ireturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 8 0 this Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
0 8 1 obj Ljava/lang/Object;
5 8 2 other Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
MethodParameters:
Name Flags
obj
}
SourceFile: "PolynomialFunction.java"
NestMembers:
org.apache.commons.math3.analysis.polynomials.PolynomialFunction$Parametric
InnerClasses:
public Parametric = org.apache.commons.math3.analysis.polynomials.PolynomialFunction$Parametric of org.apache.commons.math3.analysis.polynomials.PolynomialFunction