public class org.apache.commons.math3.analysis.integration.IterativeLegendreGaussIntegrator extends org.apache.commons.math3.analysis.integration.BaseAbstractUnivariateIntegrator
minor version: 0
major version: 59
flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
this_class: org.apache.commons.math3.analysis.integration.IterativeLegendreGaussIntegrator
super_class: org.apache.commons.math3.analysis.integration.BaseAbstractUnivariateIntegrator
{
private static final org.apache.commons.math3.analysis.integration.gauss.GaussIntegratorFactory FACTORY;
descriptor: Lorg/apache/commons/math3/analysis/integration/gauss/GaussIntegratorFactory;
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
private final int numberOfPoints;
descriptor: I
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
static void <clinit>();
descriptor: ()V
flags: (0x0008) ACC_STATIC
Code:
stack=2, locals=0, args_size=0
0: new org.apache.commons.math3.analysis.integration.gauss.GaussIntegratorFactory
dup
invokespecial org.apache.commons.math3.analysis.integration.gauss.GaussIntegratorFactory.<init>:()V
1: putstatic org.apache.commons.math3.analysis.integration.IterativeLegendreGaussIntegrator.FACTORY:Lorg/apache/commons/math3/analysis/integration/gauss/GaussIntegratorFactory;
2: return
LocalVariableTable:
Start End Slot Name Signature
public void <init>(int, double, double, int, int);
descriptor: (IDDII)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=7, locals=8, args_size=6
start local 0 start local 1 start local 2 start local 4 start local 6 start local 7 0: aload 0
dload 2
dload 4
iload 6
iload 7
invokespecial org.apache.commons.math3.analysis.integration.BaseAbstractUnivariateIntegrator.<init>:(DDII)V
1: iload 1
ifgt 3
2: new org.apache.commons.math3.exception.NotStrictlyPositiveException
dup
getstatic org.apache.commons.math3.exception.util.LocalizedFormats.NUMBER_OF_POINTS:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
iload 1
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
invokespecial org.apache.commons.math3.exception.NotStrictlyPositiveException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;Ljava/lang/Number;)V
athrow
3: StackMap locals: org.apache.commons.math3.analysis.integration.IterativeLegendreGaussIntegrator int double double int int
StackMap stack:
aload 0
iload 1
putfield org.apache.commons.math3.analysis.integration.IterativeLegendreGaussIntegrator.numberOfPoints:I
4: return
end local 7 end local 6 end local 4 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/apache/commons/math3/analysis/integration/IterativeLegendreGaussIntegrator;
0 5 1 n I
0 5 2 relativeAccuracy D
0 5 4 absoluteAccuracy D
0 5 6 minimalIterationCount I
0 5 7 maximalIterationCount I
Exceptions:
throws org.apache.commons.math3.exception.NotStrictlyPositiveException, org.apache.commons.math3.exception.NumberIsTooSmallException
MethodParameters:
Name Flags
n final
relativeAccuracy final
absoluteAccuracy final
minimalIterationCount final
maximalIterationCount final
public void <init>(int, double, double);
descriptor: (IDD)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=8, locals=6, args_size=4
start local 0 start local 1 start local 2 start local 4 0: aload 0
iload 1
dload 2
dload 4
1: iconst_3
ldc 2147483647
invokespecial org.apache.commons.math3.analysis.integration.IterativeLegendreGaussIntegrator.<init>:(IDDII)V
2: return
end local 4 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/apache/commons/math3/analysis/integration/IterativeLegendreGaussIntegrator;
0 3 1 n I
0 3 2 relativeAccuracy D
0 3 4 absoluteAccuracy D
Exceptions:
throws org.apache.commons.math3.exception.NotStrictlyPositiveException
MethodParameters:
Name Flags
n final
relativeAccuracy final
absoluteAccuracy final
public void <init>(int, int, int);
descriptor: (III)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=8, locals=4, args_size=4
start local 0 start local 1 start local 2 start local 3 0: aload 0
iload 1
ldc 1.0E-6
ldc 1.0E-15
1: iload 2
iload 3
invokespecial org.apache.commons.math3.analysis.integration.IterativeLegendreGaussIntegrator.<init>:(IDDII)V
2: return
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/apache/commons/math3/analysis/integration/IterativeLegendreGaussIntegrator;
0 3 1 n I
0 3 2 minimalIterationCount I
0 3 3 maximalIterationCount I
Exceptions:
throws org.apache.commons.math3.exception.NotStrictlyPositiveException, org.apache.commons.math3.exception.NumberIsTooSmallException
MethodParameters:
Name Flags
n final
minimalIterationCount final
maximalIterationCount final
protected double doIntegrate();
descriptor: ()D
flags: (0x0004) ACC_PROTECTED
Code:
stack=8, locals=12, args_size=1
start local 0 0: aload 0
iconst_1
invokevirtual org.apache.commons.math3.analysis.integration.IterativeLegendreGaussIntegrator.stage:(I)D
dstore 1
start local 1 1: iconst_2
istore 3
start local 3 2: StackMap locals: double int
StackMap stack:
aload 0
iload 3
invokevirtual org.apache.commons.math3.analysis.integration.IterativeLegendreGaussIntegrator.stage:(I)D
dstore 4
start local 4 3: dload 4
dload 1
dsub
invokestatic org.apache.commons.math3.util.FastMath.abs:(D)D
dstore 6
start local 6 4: aload 0
invokevirtual org.apache.commons.math3.analysis.integration.IterativeLegendreGaussIntegrator.getAbsoluteAccuracy:()D
5: aload 0
invokevirtual org.apache.commons.math3.analysis.integration.IterativeLegendreGaussIntegrator.getRelativeAccuracy:()D
dload 1
invokestatic org.apache.commons.math3.util.FastMath.abs:(D)D
dload 4
invokestatic org.apache.commons.math3.util.FastMath.abs:(D)D
dadd
dmul
ldc 0.5
dmul
6: invokestatic org.apache.commons.math3.util.FastMath.max:(DD)D
7: dstore 8
start local 8 8: aload 0
invokevirtual org.apache.commons.math3.analysis.integration.IterativeLegendreGaussIntegrator.getIterations:()I
iconst_1
iadd
aload 0
invokevirtual org.apache.commons.math3.analysis.integration.IterativeLegendreGaussIntegrator.getMinimalIterationCount:()I
if_icmplt 11
9: dload 6
dload 8
dcmpg
ifgt 11
10: dload 4
dreturn
11: StackMap locals: double double double
StackMap stack:
ldc 4.0
dload 6
dload 8
ddiv
ldc 0.5
aload 0
getfield org.apache.commons.math3.analysis.integration.IterativeLegendreGaussIntegrator.numberOfPoints:I
i2d
ddiv
invokestatic org.apache.commons.math3.util.FastMath.pow:(DD)D
invokestatic org.apache.commons.math3.util.FastMath.min:(DD)D
dstore 10
start local 10 12: dload 10
iload 3
i2d
dmul
d2i
iload 3
iconst_1
iadd
invokestatic org.apache.commons.math3.util.FastMath.max:(II)I
istore 3
13: dload 4
dstore 1
14: aload 0
invokevirtual org.apache.commons.math3.analysis.integration.IterativeLegendreGaussIntegrator.incrementCount:()V
end local 10 end local 8 end local 6 end local 4 15: goto 2
end local 3 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 16 0 this Lorg/apache/commons/math3/analysis/integration/IterativeLegendreGaussIntegrator;
1 16 1 oldt D
2 16 3 n I
3 15 4 t D
4 15 6 delta D
8 15 8 limit D
12 15 10 ratio D
Exceptions:
throws org.apache.commons.math3.exception.MathIllegalArgumentException, org.apache.commons.math3.exception.TooManyEvaluationsException, org.apache.commons.math3.exception.MaxCountExceededException
private double stage(int);
descriptor: (I)D
flags: (0x0002) ACC_PRIVATE
Code:
stack=6, locals=17, args_size=2
start local 0 start local 1 0: new org.apache.commons.math3.analysis.integration.IterativeLegendreGaussIntegrator$1
dup
aload 0
invokespecial org.apache.commons.math3.analysis.integration.IterativeLegendreGaussIntegrator$1.<init>:(Lorg/apache/commons/math3/analysis/integration/IterativeLegendreGaussIntegrator;)V
astore 2
start local 2 1: aload 0
invokevirtual org.apache.commons.math3.analysis.integration.IterativeLegendreGaussIntegrator.getMin:()D
dstore 3
start local 3 2: aload 0
invokevirtual org.apache.commons.math3.analysis.integration.IterativeLegendreGaussIntegrator.getMax:()D
dstore 5
start local 5 3: dload 5
dload 3
dsub
iload 1
i2d
ddiv
dstore 7
start local 7 4: dconst_0
dstore 9
start local 9 5: iconst_0
istore 11
start local 11 6: goto 12
7: StackMap locals: org.apache.commons.math3.analysis.integration.IterativeLegendreGaussIntegrator int org.apache.commons.math3.analysis.UnivariateFunction double double double double int
StackMap stack:
dload 3
iload 11
i2d
dload 7
dmul
dadd
dstore 12
start local 12 8: dload 12
dload 7
dadd
dstore 14
start local 14 9: getstatic org.apache.commons.math3.analysis.integration.IterativeLegendreGaussIntegrator.FACTORY:Lorg/apache/commons/math3/analysis/integration/gauss/GaussIntegratorFactory;
aload 0
getfield org.apache.commons.math3.analysis.integration.IterativeLegendreGaussIntegrator.numberOfPoints:I
dload 12
dload 14
invokevirtual org.apache.commons.math3.analysis.integration.gauss.GaussIntegratorFactory.legendreHighPrecision:(IDD)Lorg/apache/commons/math3/analysis/integration/gauss/GaussIntegrator;
astore 16
start local 16 10: dload 9
aload 16
aload 2
invokevirtual org.apache.commons.math3.analysis.integration.gauss.GaussIntegrator.integrate:(Lorg/apache/commons/math3/analysis/UnivariateFunction;)D
dadd
dstore 9
end local 16 end local 14 end local 12 11: iinc 11 1
StackMap locals:
StackMap stack:
12: iload 11
iload 1
if_icmplt 7
end local 11 13: dload 9
dreturn
end local 9 end local 7 end local 5 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 14 0 this Lorg/apache/commons/math3/analysis/integration/IterativeLegendreGaussIntegrator;
0 14 1 n I
1 14 2 f Lorg/apache/commons/math3/analysis/UnivariateFunction;
2 14 3 min D
3 14 5 max D
4 14 7 step D
5 14 9 sum D
6 13 11 i I
8 11 12 a D
9 11 14 b D
10 11 16 g Lorg/apache/commons/math3/analysis/integration/gauss/GaussIntegrator;
Exceptions:
throws org.apache.commons.math3.exception.TooManyEvaluationsException
MethodParameters:
Name Flags
n final
}
SourceFile: "IterativeLegendreGaussIntegrator.java"
NestMembers:
org.apache.commons.math3.analysis.integration.IterativeLegendreGaussIntegrator$1
InnerClasses:
org.apache.commons.math3.analysis.integration.IterativeLegendreGaussIntegrator$1