public abstract class org.apache.commons.math3.optimization.direct.AbstractSimplex implements org.apache.commons.math3.optimization.OptimizationData
minor version: 0
major version: 59
flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
this_class: org.apache.commons.math3.optimization.direct.AbstractSimplex
super_class: java.lang.Object
{
private org.apache.commons.math3.optimization.PointValuePair[] simplex;
descriptor: [Lorg/apache/commons/math3/optimization/PointValuePair;
flags: (0x0002) ACC_PRIVATE
private double[][] startConfiguration;
descriptor: [[D
flags: (0x0002) ACC_PRIVATE
private final int dimension;
descriptor: I
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
protected void <init>(int);
descriptor: (I)V
flags: (0x0004) ACC_PROTECTED
Code:
stack=4, locals=2, args_size=2
start local 0 start local 1 0: aload 0
iload 1
dconst_1
invokespecial org.apache.commons.math3.optimization.direct.AbstractSimplex.<init>:(ID)V
1: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/apache/commons/math3/optimization/direct/AbstractSimplex;
0 2 1 n I
MethodParameters:
Name Flags
n
protected void <init>(int, double);
descriptor: (ID)V
flags: (0x0004) ACC_PROTECTED
Code:
stack=4, locals=4, args_size=3
start local 0 start local 1 start local 2 0: aload 0
iload 1
dload 2
invokestatic org.apache.commons.math3.optimization.direct.AbstractSimplex.createHypercubeSteps:(ID)[D
invokespecial org.apache.commons.math3.optimization.direct.AbstractSimplex.<init>:([D)V
1: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/apache/commons/math3/optimization/direct/AbstractSimplex;
0 2 1 n I
0 2 2 sideLength D
MethodParameters:
Name Flags
n
sideLength
protected void <init>(double[]);
descriptor: ([D)V
flags: (0x0004) ACC_PROTECTED
Code:
stack=6, locals=5, args_size=2
start local 0 start local 1 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: aload 1
ifnonnull 3
2: new org.apache.commons.math3.exception.NullArgumentException
dup
invokespecial org.apache.commons.math3.exception.NullArgumentException.<init>:()V
athrow
3: StackMap locals: org.apache.commons.math3.optimization.direct.AbstractSimplex double[]
StackMap stack:
aload 1
arraylength
ifne 5
4: new org.apache.commons.math3.exception.ZeroException
dup
invokespecial org.apache.commons.math3.exception.ZeroException.<init>:()V
athrow
5: StackMap locals:
StackMap stack:
aload 0
aload 1
arraylength
putfield org.apache.commons.math3.optimization.direct.AbstractSimplex.dimension:I
6: aload 0
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.dimension:I
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.dimension:I
multianewarray [[D 2
putfield org.apache.commons.math3.optimization.direct.AbstractSimplex.startConfiguration:[[D
7: iconst_0
istore 2
start local 2 8: goto 18
9: StackMap locals: int
StackMap stack:
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.startConfiguration:[[D
iload 2
aaload
astore 3
start local 3 10: iconst_0
istore 4
start local 4 11: goto 16
12: StackMap locals: double[] int
StackMap stack:
aload 1
iload 4
daload
dconst_0
dcmpl
ifne 14
13: new org.apache.commons.math3.exception.ZeroException
dup
getstatic org.apache.commons.math3.exception.util.LocalizedFormats.EQUAL_VERTICES_IN_SIMPLEX:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
iconst_0
anewarray java.lang.Object
invokespecial org.apache.commons.math3.exception.ZeroException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;[Ljava/lang/Object;)V
athrow
14: StackMap locals:
StackMap stack:
aload 1
iconst_0
aload 3
iconst_0
iload 4
iconst_1
iadd
invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
15: iinc 4 1
StackMap locals:
StackMap stack:
16: iload 4
iload 2
iconst_1
iadd
if_icmplt 12
end local 4 end local 3 17: iinc 2 1
StackMap locals:
StackMap stack:
18: iload 2
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.dimension:I
if_icmplt 9
end local 2 19: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 20 0 this Lorg/apache/commons/math3/optimization/direct/AbstractSimplex;
0 20 1 steps [D
8 19 2 i I
10 17 3 vertexI [D
11 17 4 j I
MethodParameters:
Name Flags
steps final
protected void <init>(double[][]);
descriptor: ([[D)V
flags: (0x0004) ACC_PROTECTED
Code:
stack=7, locals=9, args_size=2
start local 0 start local 1 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: aload 1
arraylength
ifgt 5
2: new org.apache.commons.math3.exception.NotStrictlyPositiveException
dup
getstatic org.apache.commons.math3.exception.util.LocalizedFormats.SIMPLEX_NEED_ONE_POINT:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
3: aload 1
arraylength
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
4: invokespecial org.apache.commons.math3.exception.NotStrictlyPositiveException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;Ljava/lang/Number;)V
athrow
5: StackMap locals: org.apache.commons.math3.optimization.direct.AbstractSimplex double[][]
StackMap stack:
aload 0
aload 1
arraylength
iconst_1
isub
putfield org.apache.commons.math3.optimization.direct.AbstractSimplex.dimension:I
6: aload 0
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.dimension:I
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.dimension:I
multianewarray [[D 2
putfield org.apache.commons.math3.optimization.direct.AbstractSimplex.startConfiguration:[[D
7: aload 1
iconst_0
aaload
astore 2
start local 2 8: iconst_0
istore 3
start local 3 9: goto 38
10: StackMap locals: double[] int
StackMap stack:
aload 1
iload 3
aaload
astore 4
start local 4 11: aload 4
arraylength
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.dimension:I
if_icmpeq 13
12: new org.apache.commons.math3.exception.DimensionMismatchException
dup
aload 4
arraylength
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.dimension:I
invokespecial org.apache.commons.math3.exception.DimensionMismatchException.<init>:(II)V
athrow
13: StackMap locals: double[]
StackMap stack:
iconst_0
istore 5
start local 5 14: goto 29
15: StackMap locals: int
StackMap stack:
aload 1
iload 5
aaload
astore 6
start local 6 16: iconst_1
istore 7
start local 7 17: iconst_0
istore 8
start local 8 18: goto 23
19: StackMap locals: double[] int int
StackMap stack:
aload 4
iload 8
daload
aload 6
iload 8
daload
dcmpl
ifeq 22
20: iconst_0
istore 7
21: goto 24
22: StackMap locals:
StackMap stack:
iinc 8 1
StackMap locals:
StackMap stack:
23: iload 8
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.dimension:I
if_icmplt 19
end local 8 24: StackMap locals:
StackMap stack:
iload 7
ifeq 28
25: new org.apache.commons.math3.exception.MathIllegalArgumentException
dup
getstatic org.apache.commons.math3.exception.util.LocalizedFormats.EQUAL_VERTICES_IN_SIMPLEX:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
iconst_2
anewarray java.lang.Object
dup
iconst_0
26: iload 3
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
aastore
dup
iconst_1
iload 5
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
27: aastore
invokespecial org.apache.commons.math3.exception.MathIllegalArgumentException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;[Ljava/lang/Object;)V
athrow
end local 7 end local 6 28: StackMap locals:
StackMap stack:
iinc 5 1
StackMap locals:
StackMap stack:
29: iload 5
iload 3
if_icmplt 15
end local 5 30: iload 3
ifle 37
31: aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.startConfiguration:[[D
iload 3
iconst_1
isub
aaload
astore 5
start local 5 32: iconst_0
istore 6
start local 6 33: goto 36
34: StackMap locals: org.apache.commons.math3.optimization.direct.AbstractSimplex double[][] double[] int double[] double[] int
StackMap stack:
aload 5
iload 6
aload 4
iload 6
daload
aload 2
iload 6
daload
dsub
dastore
35: iinc 6 1
StackMap locals:
StackMap stack:
36: iload 6
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.dimension:I
if_icmplt 34
end local 6 end local 5 end local 4 37: StackMap locals:
StackMap stack:
iinc 3 1
StackMap locals:
StackMap stack:
38: iload 3
aload 1
arraylength
if_icmplt 10
end local 3 39: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 40 0 this Lorg/apache/commons/math3/optimization/direct/AbstractSimplex;
0 40 1 referenceSimplex [[D
8 40 2 ref0 [D
9 39 3 i I
11 37 4 refI [D
14 30 5 j I
16 28 6 refJ [D
17 28 7 allEquals Z
18 24 8 k I
32 37 5 confI [D
33 37 6 k I
MethodParameters:
Name Flags
referenceSimplex final
public int getDimension();
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.optimization.direct.AbstractSimplex.dimension:I
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/apache/commons/math3/optimization/direct/AbstractSimplex;
public int getSize();
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.optimization.direct.AbstractSimplex.simplex:[Lorg/apache/commons/math3/optimization/PointValuePair;
arraylength
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/apache/commons/math3/optimization/direct/AbstractSimplex;
public abstract void iterate(org.apache.commons.math3.analysis.MultivariateFunction, java.util.Comparator<org.apache.commons.math3.optimization.PointValuePair>);
descriptor: (Lorg/apache/commons/math3/analysis/MultivariateFunction;Ljava/util/Comparator;)V
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: (Lorg/apache/commons/math3/analysis/MultivariateFunction;Ljava/util/Comparator<Lorg/apache/commons/math3/optimization/PointValuePair;>;)V
MethodParameters:
Name Flags
evaluationFunction final
comparator final
public void build(double[]);
descriptor: ([D)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=7, locals=6, args_size=2
start local 0 start local 1 0: aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.dimension:I
aload 1
arraylength
if_icmpeq 2
1: new org.apache.commons.math3.exception.DimensionMismatchException
dup
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.dimension:I
aload 1
arraylength
invokespecial org.apache.commons.math3.exception.DimensionMismatchException.<init>:(II)V
athrow
2: StackMap locals:
StackMap stack:
aload 0
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.dimension:I
iconst_1
iadd
anewarray org.apache.commons.math3.optimization.PointValuePair
putfield org.apache.commons.math3.optimization.direct.AbstractSimplex.simplex:[Lorg/apache/commons/math3/optimization/PointValuePair;
3: aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.simplex:[Lorg/apache/commons/math3/optimization/PointValuePair;
iconst_0
new org.apache.commons.math3.optimization.PointValuePair
dup
aload 1
ldc NaN
invokespecial org.apache.commons.math3.optimization.PointValuePair.<init>:([DD)V
aastore
4: iconst_0
istore 2
start local 2 5: goto 15
6: StackMap locals: int
StackMap stack:
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.startConfiguration:[[D
iload 2
aaload
astore 3
start local 3 7: aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.dimension:I
newarray 7
astore 4
start local 4 8: iconst_0
istore 5
start local 5 9: goto 12
10: StackMap locals: double[] double[] int
StackMap stack:
aload 4
iload 5
aload 1
iload 5
daload
aload 3
iload 5
daload
dadd
dastore
11: iinc 5 1
StackMap locals:
StackMap stack:
12: iload 5
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.dimension:I
if_icmplt 10
end local 5 13: aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.simplex:[Lorg/apache/commons/math3/optimization/PointValuePair;
iload 2
iconst_1
iadd
new org.apache.commons.math3.optimization.PointValuePair
dup
aload 4
ldc NaN
invokespecial org.apache.commons.math3.optimization.PointValuePair.<init>:([DD)V
aastore
end local 4 end local 3 14: iinc 2 1
StackMap locals:
StackMap stack:
15: iload 2
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.dimension:I
if_icmplt 6
end local 2 16: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 17 0 this Lorg/apache/commons/math3/optimization/direct/AbstractSimplex;
0 17 1 startPoint [D
5 16 2 i I
7 14 3 confI [D
8 14 4 vertexI [D
9 13 5 k I
MethodParameters:
Name Flags
startPoint final
public void evaluate(org.apache.commons.math3.analysis.MultivariateFunction, java.util.Comparator<org.apache.commons.math3.optimization.PointValuePair>);
descriptor: (Lorg/apache/commons/math3/analysis/MultivariateFunction;Ljava/util/Comparator;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=8, locals=6, args_size=3
start local 0 start local 1 start local 2 0: iconst_0
istore 3
start local 3 1: goto 7
2: StackMap locals: int
StackMap stack:
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.simplex:[Lorg/apache/commons/math3/optimization/PointValuePair;
iload 3
aaload
astore 4
start local 4 3: aload 4
invokevirtual org.apache.commons.math3.optimization.PointValuePair.getPointRef:()[D
astore 5
start local 5 4: aload 4
invokevirtual org.apache.commons.math3.optimization.PointValuePair.getValue:()Ljava/lang/Object;
checkcast java.lang.Double
invokevirtual java.lang.Double.doubleValue:()D
invokestatic java.lang.Double.isNaN:(D)Z
ifeq 6
5: aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.simplex:[Lorg/apache/commons/math3/optimization/PointValuePair;
iload 3
new org.apache.commons.math3.optimization.PointValuePair
dup
aload 5
aload 1
aload 5
invokeinterface org.apache.commons.math3.analysis.MultivariateFunction.value:([D)D
iconst_0
invokespecial org.apache.commons.math3.optimization.PointValuePair.<init>:([DDZ)V
aastore
end local 5 end local 4 6: StackMap locals:
StackMap stack:
iinc 3 1
StackMap locals:
StackMap stack:
7: iload 3
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.simplex:[Lorg/apache/commons/math3/optimization/PointValuePair;
arraylength
if_icmplt 2
end local 3 8: aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.simplex:[Lorg/apache/commons/math3/optimization/PointValuePair;
aload 2
invokestatic java.util.Arrays.sort:([Ljava/lang/Object;Ljava/util/Comparator;)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/optimization/direct/AbstractSimplex;
0 10 1 evaluationFunction Lorg/apache/commons/math3/analysis/MultivariateFunction;
0 10 2 comparator Ljava/util/Comparator<Lorg/apache/commons/math3/optimization/PointValuePair;>;
1 8 3 i I
3 6 4 vertex Lorg/apache/commons/math3/optimization/PointValuePair;
4 6 5 point [D
Signature: (Lorg/apache/commons/math3/analysis/MultivariateFunction;Ljava/util/Comparator<Lorg/apache/commons/math3/optimization/PointValuePair;>;)V
MethodParameters:
Name Flags
evaluationFunction final
comparator final
protected void replaceWorstPoint(org.apache.commons.math3.optimization.PointValuePair, java.util.Comparator<org.apache.commons.math3.optimization.PointValuePair>);
descriptor: (Lorg/apache/commons/math3/optimization/PointValuePair;Ljava/util/Comparator;)V
flags: (0x0004) ACC_PROTECTED
Code:
stack=3, locals=5, args_size=3
start local 0 start local 1 start local 2 0: iconst_0
istore 3
start local 3 1: goto 7
2: StackMap locals: int
StackMap stack:
aload 2
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.simplex:[Lorg/apache/commons/math3/optimization/PointValuePair;
iload 3
aaload
aload 1
invokeinterface java.util.Comparator.compare:(Ljava/lang/Object;Ljava/lang/Object;)I
ifle 6
3: aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.simplex:[Lorg/apache/commons/math3/optimization/PointValuePair;
iload 3
aaload
astore 4
start local 4 4: aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.simplex:[Lorg/apache/commons/math3/optimization/PointValuePair;
iload 3
aload 1
aastore
5: aload 4
astore 1
end local 4 6: StackMap locals:
StackMap stack:
iinc 3 1
StackMap locals:
StackMap stack:
7: iload 3
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.dimension:I
if_icmplt 2
end local 3 8: aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.simplex:[Lorg/apache/commons/math3/optimization/PointValuePair;
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.dimension:I
aload 1
aastore
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/optimization/direct/AbstractSimplex;
0 10 1 pointValuePair Lorg/apache/commons/math3/optimization/PointValuePair;
0 10 2 comparator Ljava/util/Comparator<Lorg/apache/commons/math3/optimization/PointValuePair;>;
1 8 3 i I
4 6 4 tmp Lorg/apache/commons/math3/optimization/PointValuePair;
Signature: (Lorg/apache/commons/math3/optimization/PointValuePair;Ljava/util/Comparator<Lorg/apache/commons/math3/optimization/PointValuePair;>;)V
MethodParameters:
Name Flags
pointValuePair
comparator final
public org.apache.commons.math3.optimization.PointValuePair[] getPoints();
descriptor: ()[Lorg/apache/commons/math3/optimization/PointValuePair;
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=2, args_size=1
start local 0 0: aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.simplex:[Lorg/apache/commons/math3/optimization/PointValuePair;
arraylength
anewarray org.apache.commons.math3.optimization.PointValuePair
astore 1
start local 1 1: aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.simplex:[Lorg/apache/commons/math3/optimization/PointValuePair;
iconst_0
aload 1
iconst_0
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.simplex:[Lorg/apache/commons/math3/optimization/PointValuePair;
arraylength
invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
2: aload 1
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/apache/commons/math3/optimization/direct/AbstractSimplex;
1 3 1 copy [Lorg/apache/commons/math3/optimization/PointValuePair;
public org.apache.commons.math3.optimization.PointValuePair getPoint(int);
descriptor: (I)Lorg/apache/commons/math3/optimization/PointValuePair;
flags: (0x0001) ACC_PUBLIC
Code:
stack=6, locals=2, args_size=2
start local 0 start local 1 0: iload 1
iflt 2
1: iload 1
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.simplex:[Lorg/apache/commons/math3/optimization/PointValuePair;
arraylength
if_icmplt 3
2: StackMap locals:
StackMap stack:
new org.apache.commons.math3.exception.OutOfRangeException
dup
iload 1
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
iconst_0
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.simplex:[Lorg/apache/commons/math3/optimization/PointValuePair;
arraylength
iconst_1
isub
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
invokespecial org.apache.commons.math3.exception.OutOfRangeException.<init>:(Ljava/lang/Number;Ljava/lang/Number;Ljava/lang/Number;)V
athrow
3: StackMap locals:
StackMap stack:
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.simplex:[Lorg/apache/commons/math3/optimization/PointValuePair;
iload 1
aaload
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lorg/apache/commons/math3/optimization/direct/AbstractSimplex;
0 4 1 index I
MethodParameters:
Name Flags
index
protected void setPoint(int, org.apache.commons.math3.optimization.PointValuePair);
descriptor: (ILorg/apache/commons/math3/optimization/PointValuePair;)V
flags: (0x0004) ACC_PROTECTED
Code:
stack=6, locals=3, args_size=3
start local 0 start local 1 start local 2 0: iload 1
iflt 2
1: iload 1
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.simplex:[Lorg/apache/commons/math3/optimization/PointValuePair;
arraylength
if_icmplt 3
2: StackMap locals:
StackMap stack:
new org.apache.commons.math3.exception.OutOfRangeException
dup
iload 1
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
iconst_0
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.simplex:[Lorg/apache/commons/math3/optimization/PointValuePair;
arraylength
iconst_1
isub
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
invokespecial org.apache.commons.math3.exception.OutOfRangeException.<init>:(Ljava/lang/Number;Ljava/lang/Number;Ljava/lang/Number;)V
athrow
3: StackMap locals:
StackMap stack:
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.simplex:[Lorg/apache/commons/math3/optimization/PointValuePair;
iload 1
aload 2
aastore
4: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/apache/commons/math3/optimization/direct/AbstractSimplex;
0 5 1 index I
0 5 2 point Lorg/apache/commons/math3/optimization/PointValuePair;
MethodParameters:
Name Flags
index
point
protected void setPoints(org.apache.commons.math3.optimization.PointValuePair[]);
descriptor: ([Lorg/apache/commons/math3/optimization/PointValuePair;)V
flags: (0x0004) ACC_PROTECTED
Code:
stack=4, locals=2, args_size=2
start local 0 start local 1 0: aload 1
arraylength
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.simplex:[Lorg/apache/commons/math3/optimization/PointValuePair;
arraylength
if_icmpeq 2
1: new org.apache.commons.math3.exception.DimensionMismatchException
dup
aload 1
arraylength
aload 0
getfield org.apache.commons.math3.optimization.direct.AbstractSimplex.simplex:[Lorg/apache/commons/math3/optimization/PointValuePair;
arraylength
invokespecial org.apache.commons.math3.exception.DimensionMismatchException.<init>:(II)V
athrow
2: StackMap locals:
StackMap stack:
aload 0
aload 1
putfield org.apache.commons.math3.optimization.direct.AbstractSimplex.simplex:[Lorg/apache/commons/math3/optimization/PointValuePair;
3: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lorg/apache/commons/math3/optimization/direct/AbstractSimplex;
0 4 1 points [Lorg/apache/commons/math3/optimization/PointValuePair;
MethodParameters:
Name Flags
points
private static double[] createHypercubeSteps(int, double);
descriptor: (ID)[D
flags: (0x000a) ACC_PRIVATE, ACC_STATIC
Code:
stack=4, locals=5, args_size=2
start local 0 start local 1 0: iload 0
newarray 7
astore 3
start local 3 1: iconst_0
istore 4
start local 4 2: goto 5
3: StackMap locals: double[] int
StackMap stack:
aload 3
iload 4
dload 1
dastore
4: iinc 4 1
StackMap locals:
StackMap stack:
5: iload 4
iload 0
if_icmplt 3
end local 4 6: aload 3
areturn
end local 3 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 7 0 n I
0 7 1 sideLength D
1 7 3 steps [D
2 6 4 i I
MethodParameters:
Name Flags
n
sideLength
}
SourceFile: "AbstractSimplex.java"
RuntimeVisibleAnnotations:
java.lang.Deprecated()