public class org.apache.commons.math3.analysis.integration.MidPointIntegrator 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.MidPointIntegrator
super_class: org.apache.commons.math3.analysis.integration.BaseAbstractUnivariateIntegrator
{
public static final int MIDPOINT_MAX_ITERATIONS_COUNT;
descriptor: I
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 64
public void <init>(double, double, int, int);
descriptor: (DDII)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=7, locals=7, args_size=5
start local 0 start local 1 start local 3 start local 5 start local 6 0: aload 0
dload 1
dload 3
iload 5
iload 6
invokespecial org.apache.commons.math3.analysis.integration.BaseAbstractUnivariateIntegrator.<init>:(DDII)V
1: iload 6
bipush 64
if_icmple 5
2: new org.apache.commons.math3.exception.NumberIsTooLargeException
dup
iload 6
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
3: bipush 64
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
iconst_0
4: invokespecial org.apache.commons.math3.exception.NumberIsTooLargeException.<init>:(Ljava/lang/Number;Ljava/lang/Number;Z)V
athrow
5: StackMap locals: org.apache.commons.math3.analysis.integration.MidPointIntegrator double double int int
StackMap stack:
return
end local 6 end local 5 end local 3 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/apache/commons/math3/analysis/integration/MidPointIntegrator;
0 6 1 relativeAccuracy D
0 6 3 absoluteAccuracy D
0 6 5 minimalIterationCount I
0 6 6 maximalIterationCount I
Exceptions:
throws org.apache.commons.math3.exception.NotStrictlyPositiveException, org.apache.commons.math3.exception.NumberIsTooSmallException, org.apache.commons.math3.exception.NumberIsTooLargeException
MethodParameters:
Name Flags
relativeAccuracy final
absoluteAccuracy final
minimalIterationCount final
maximalIterationCount final
public void <init>(int, int);
descriptor: (II)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
iload 1
iload 2
invokespecial org.apache.commons.math3.analysis.integration.BaseAbstractUnivariateIntegrator.<init>:(II)V
1: iload 2
bipush 64
if_icmple 5
2: new org.apache.commons.math3.exception.NumberIsTooLargeException
dup
iload 2
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
3: bipush 64
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
iconst_0
4: invokespecial org.apache.commons.math3.exception.NumberIsTooLargeException.<init>:(Ljava/lang/Number;Ljava/lang/Number;Z)V
athrow
5: StackMap locals: org.apache.commons.math3.analysis.integration.MidPointIntegrator int int
StackMap stack:
return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/apache/commons/math3/analysis/integration/MidPointIntegrator;
0 6 1 minimalIterationCount I
0 6 2 maximalIterationCount I
Exceptions:
throws org.apache.commons.math3.exception.NotStrictlyPositiveException, org.apache.commons.math3.exception.NumberIsTooSmallException, org.apache.commons.math3.exception.NumberIsTooLargeException
MethodParameters:
Name Flags
minimalIterationCount final
maximalIterationCount final
public void <init>();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: aload 0
iconst_3
bipush 64
invokespecial org.apache.commons.math3.analysis.integration.BaseAbstractUnivariateIntegrator.<init>:(II)V
1: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/apache/commons/math3/analysis/integration/MidPointIntegrator;
private double stage(int, double, double, double);
descriptor: (IDDD)D
flags: (0x0002) ACC_PRIVATE
Code:
stack=8, locals=18, args_size=5
start local 0 start local 1 start local 2 start local 4 start local 6 0: lconst_1
iload 1
iconst_1
isub
lshl
lstore 8
start local 8 1: dconst_0
dstore 10
start local 10 2: dload 6
lload 8
l2d
ddiv
dstore 12
start local 12 3: dload 4
ldc 0.5
dload 12
dmul
dadd
dstore 14
start local 14 4: lconst_0
lstore 16
start local 16 5: goto 9
6: StackMap locals: org.apache.commons.math3.analysis.integration.MidPointIntegrator int double double double long double double double long
StackMap stack:
dload 10
aload 0
dload 14
invokevirtual org.apache.commons.math3.analysis.integration.MidPointIntegrator.computeObjectiveValue:(D)D
dadd
dstore 10
7: dload 14
dload 12
dadd
dstore 14
8: lload 16
lconst_1
ladd
lstore 16
StackMap locals:
StackMap stack:
9: lload 16
lload 8
lcmp
iflt 6
end local 16 10: ldc 0.5
dload 2
dload 10
dload 12
dmul
dadd
dmul
dreturn
end local 14 end local 12 end local 10 end local 8 end local 6 end local 4 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 11 0 this Lorg/apache/commons/math3/analysis/integration/MidPointIntegrator;
0 11 1 n I
0 11 2 previousStageResult D
0 11 4 min D
0 11 6 diffMaxMin D
1 11 8 np J
2 11 10 sum D
3 11 12 spacing D
4 11 14 x D
5 10 16 i J
Exceptions:
throws org.apache.commons.math3.exception.TooManyEvaluationsException
MethodParameters:
Name Flags
n final
previousStageResult
min
diffMaxMin
protected double doIntegrate();
descriptor: ()D
flags: (0x0004) ACC_PROTECTED
Code:
stack=8, locals=16, args_size=1
start local 0 0: aload 0
invokevirtual org.apache.commons.math3.analysis.integration.MidPointIntegrator.getMin:()D
dstore 1
start local 1 1: aload 0
invokevirtual org.apache.commons.math3.analysis.integration.MidPointIntegrator.getMax:()D
dload 1
dsub
dstore 3
start local 3 2: dload 1
ldc 0.5
dload 3
dmul
dadd
dstore 5
start local 5 3: dload 3
aload 0
dload 5
invokevirtual org.apache.commons.math3.analysis.integration.MidPointIntegrator.computeObjectiveValue:(D)D
dmul
dstore 7
start local 7 4: StackMap locals: org.apache.commons.math3.analysis.integration.MidPointIntegrator double double double double
StackMap stack:
aload 0
invokevirtual org.apache.commons.math3.analysis.integration.MidPointIntegrator.incrementCount:()V
5: aload 0
invokevirtual org.apache.commons.math3.analysis.integration.MidPointIntegrator.getIterations:()I
istore 9
start local 9 6: aload 0
iload 9
dload 7
dload 1
dload 3
invokevirtual org.apache.commons.math3.analysis.integration.MidPointIntegrator.stage:(IDDD)D
dstore 10
start local 10 7: iload 9
aload 0
invokevirtual org.apache.commons.math3.analysis.integration.MidPointIntegrator.getMinimalIterationCount:()I
if_icmplt 13
8: dload 10
dload 7
dsub
invokestatic org.apache.commons.math3.util.FastMath.abs:(D)D
dstore 12
start local 12 9: aload 0
invokevirtual org.apache.commons.math3.analysis.integration.MidPointIntegrator.getRelativeAccuracy:()D
dload 7
invokestatic org.apache.commons.math3.util.FastMath.abs:(D)D
dload 10
invokestatic org.apache.commons.math3.util.FastMath.abs:(D)D
dadd
dmul
ldc 0.5
dmul
10: dstore 14
start local 14 11: dload 12
dload 14
dcmpg
ifle 12
dload 12
aload 0
invokevirtual org.apache.commons.math3.analysis.integration.MidPointIntegrator.getAbsoluteAccuracy:()D
dcmpg
ifgt 13
12: StackMap locals: org.apache.commons.math3.analysis.integration.MidPointIntegrator double double double double int double double double
StackMap stack:
dload 10
dreturn
end local 14 end local 12 13: StackMap locals:
StackMap stack:
dload 10
dstore 7
end local 10 end local 9 14: goto 4
end local 7 end local 5 end local 3 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 15 0 this Lorg/apache/commons/math3/analysis/integration/MidPointIntegrator;
1 15 1 min D
2 15 3 diff D
3 15 5 midPoint D
4 15 7 oldt D
6 14 9 i I
7 14 10 t D
9 13 12 delta D
11 13 14 rLimit D
Exceptions:
throws org.apache.commons.math3.exception.MathIllegalArgumentException, org.apache.commons.math3.exception.TooManyEvaluationsException, org.apache.commons.math3.exception.MaxCountExceededException
}
SourceFile: "MidPointIntegrator.java"