public class org.apache.commons.math3.analysis.integration.gauss.GaussIntegrator
minor version: 0
major version: 59
flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
this_class: org.apache.commons.math3.analysis.integration.gauss.GaussIntegrator
super_class: java.lang.Object
{
private final double[] points;
descriptor: [D
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
private final double[] weights;
descriptor: [D
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
public void <init>(double[], double[]);
descriptor: ([D[D)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: aload 1
arraylength
aload 2
arraylength
if_icmpeq 5
2: new org.apache.commons.math3.exception.DimensionMismatchException
dup
aload 1
arraylength
3: aload 2
arraylength
4: invokespecial org.apache.commons.math3.exception.DimensionMismatchException.<init>:(II)V
athrow
5: StackMap locals: org.apache.commons.math3.analysis.integration.gauss.GaussIntegrator double[] double[]
StackMap stack:
aload 1
getstatic org.apache.commons.math3.util.MathArrays$OrderDirection.INCREASING:Lorg/apache/commons/math3/util/MathArrays$OrderDirection;
iconst_1
iconst_1
invokestatic org.apache.commons.math3.util.MathArrays.checkOrder:([DLorg/apache/commons/math3/util/MathArrays$OrderDirection;ZZ)Z
pop
6: aload 0
aload 1
invokevirtual double[].clone:()Ljava/lang/Object;
checkcast double[]
putfield org.apache.commons.math3.analysis.integration.gauss.GaussIntegrator.points:[D
7: aload 0
aload 2
invokevirtual double[].clone:()Ljava/lang/Object;
checkcast double[]
putfield org.apache.commons.math3.analysis.integration.gauss.GaussIntegrator.weights:[D
8: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 9 0 this Lorg/apache/commons/math3/analysis/integration/gauss/GaussIntegrator;
0 9 1 points [D
0 9 2 weights [D
Exceptions:
throws org.apache.commons.math3.exception.NonMonotonicSequenceException, org.apache.commons.math3.exception.DimensionMismatchException
MethodParameters:
Name Flags
points
weights
public void <init>(org.apache.commons.math3.util.Pair<double[], double[]>);
descriptor: (Lorg/apache/commons/math3/util/Pair;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokevirtual org.apache.commons.math3.util.Pair.getFirst:()Ljava/lang/Object;
checkcast double[]
aload 1
invokevirtual org.apache.commons.math3.util.Pair.getSecond:()Ljava/lang/Object;
checkcast double[]
invokespecial org.apache.commons.math3.analysis.integration.gauss.GaussIntegrator.<init>:([D[D)V
1: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/apache/commons/math3/analysis/integration/gauss/GaussIntegrator;
0 2 1 pointsAndWeights Lorg/apache/commons/math3/util/Pair<[D[D>;
Exceptions:
throws org.apache.commons.math3.exception.NonMonotonicSequenceException
Signature: (Lorg/apache/commons/math3/util/Pair<[D[D>;)V
MethodParameters:
Name Flags
pointsAndWeights
public double integrate(org.apache.commons.math3.analysis.UnivariateFunction);
descriptor: (Lorg/apache/commons/math3/analysis/UnivariateFunction;)D
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=15, args_size=2
start local 0 start local 1 0: dconst_0
dstore 2
start local 2 1: dconst_0
dstore 4
start local 4 2: iconst_0
istore 6
start local 6 3: goto 11
4: StackMap locals: double double int
StackMap stack:
aload 0
getfield org.apache.commons.math3.analysis.integration.gauss.GaussIntegrator.points:[D
iload 6
daload
dstore 7
start local 7 5: aload 0
getfield org.apache.commons.math3.analysis.integration.gauss.GaussIntegrator.weights:[D
iload 6
daload
dstore 9
start local 9 6: dload 9
aload 1
dload 7
invokeinterface org.apache.commons.math3.analysis.UnivariateFunction.value:(D)D
dmul
dload 4
dsub
dstore 11
start local 11 7: dload 2
dload 11
dadd
dstore 13
start local 13 8: dload 13
dload 2
dsub
dload 11
dsub
dstore 4
9: dload 13
dstore 2
end local 13 end local 11 end local 9 end local 7 10: iinc 6 1
StackMap locals:
StackMap stack:
11: iload 6
aload 0
getfield org.apache.commons.math3.analysis.integration.gauss.GaussIntegrator.points:[D
arraylength
if_icmplt 4
end local 6 12: dload 2
dreturn
end local 4 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 13 0 this Lorg/apache/commons/math3/analysis/integration/gauss/GaussIntegrator;
0 13 1 f Lorg/apache/commons/math3/analysis/UnivariateFunction;
1 13 2 s D
2 13 4 c D
3 12 6 i I
5 10 7 x D
6 10 9 w D
7 10 11 y D
8 10 13 t D
MethodParameters:
Name Flags
f
public int getNumberOfPoints();
descriptor: ()I
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.apache.commons.math3.analysis.integration.gauss.GaussIntegrator.points:[D
arraylength
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/apache/commons/math3/analysis/integration/gauss/GaussIntegrator;
public double getPoint(int);
descriptor: (I)D
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.apache.commons.math3.analysis.integration.gauss.GaussIntegrator.points:[D
iload 1
daload
dreturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/apache/commons/math3/analysis/integration/gauss/GaussIntegrator;
0 1 1 index I
MethodParameters:
Name Flags
index
public double getWeight(int);
descriptor: (I)D
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.apache.commons.math3.analysis.integration.gauss.GaussIntegrator.weights:[D
iload 1
daload
dreturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/apache/commons/math3/analysis/integration/gauss/GaussIntegrator;
0 1 1 index I
MethodParameters:
Name Flags
index
}
SourceFile: "GaussIntegrator.java"
InnerClasses:
public final OrderDirection = org.apache.commons.math3.util.MathArrays$OrderDirection of org.apache.commons.math3.util.MathArrays