public class org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder
minor version: 0
major version: 59
flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
this_class: org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder
super_class: java.lang.Object
{
private int maxEvaluations;
descriptor: I
flags: (0x0002) ACC_PRIVATE
private int maxIterations;
descriptor: I
flags: (0x0002) ACC_PRIVATE
private org.apache.commons.math3.optim.ConvergenceChecker<org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation> checker;
descriptor: Lorg/apache/commons/math3/optim/ConvergenceChecker;
flags: (0x0002) ACC_PRIVATE
Signature: Lorg/apache/commons/math3/optim/ConvergenceChecker<Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem$Evaluation;>;
private org.apache.commons.math3.fitting.leastsquares.MultivariateJacobianFunction model;
descriptor: Lorg/apache/commons/math3/fitting/leastsquares/MultivariateJacobianFunction;
flags: (0x0002) ACC_PRIVATE
private org.apache.commons.math3.linear.RealVector target;
descriptor: Lorg/apache/commons/math3/linear/RealVector;
flags: (0x0002) ACC_PRIVATE
private org.apache.commons.math3.linear.RealVector start;
descriptor: Lorg/apache/commons/math3/linear/RealVector;
flags: (0x0002) ACC_PRIVATE
private org.apache.commons.math3.linear.RealMatrix weight;
descriptor: Lorg/apache/commons/math3/linear/RealMatrix;
flags: (0x0002) ACC_PRIVATE
private boolean lazyEvaluation;
descriptor: Z
flags: (0x0002) ACC_PRIVATE
private org.apache.commons.math3.fitting.leastsquares.ParameterValidator paramValidator;
descriptor: Lorg/apache/commons/math3/fitting/leastsquares/ParameterValidator;
flags: (0x0002) ACC_PRIVATE
public void <init>();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokespecial java.lang.Object.<init>:()V
return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
public org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem build();
descriptor: ()Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem;
flags: (0x0001) ACC_PUBLIC
Code:
stack=9, locals=1, args_size=1
start local 0 0: aload 0
getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.model:Lorg/apache/commons/math3/fitting/leastsquares/MultivariateJacobianFunction;
1: aload 0
getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.target:Lorg/apache/commons/math3/linear/RealVector;
2: aload 0
getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.start:Lorg/apache/commons/math3/linear/RealVector;
3: aload 0
getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.weight:Lorg/apache/commons/math3/linear/RealMatrix;
4: aload 0
getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.checker:Lorg/apache/commons/math3/optim/ConvergenceChecker;
5: aload 0
getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.maxEvaluations:I
6: aload 0
getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.maxIterations:I
7: aload 0
getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.lazyEvaluation:Z
8: aload 0
getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.paramValidator:Lorg/apache/commons/math3/fitting/leastsquares/ParameterValidator;
9: invokestatic org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory.create:(Lorg/apache/commons/math3/fitting/leastsquares/MultivariateJacobianFunction;Lorg/apache/commons/math3/linear/RealVector;Lorg/apache/commons/math3/linear/RealVector;Lorg/apache/commons/math3/linear/RealMatrix;Lorg/apache/commons/math3/optim/ConvergenceChecker;IIZLorg/apache/commons/math3/fitting/leastsquares/ParameterValidator;)Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 10 0 this Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
public org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder maxEvaluations(int);
descriptor: (I)Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
iload 1
putfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.maxEvaluations:I
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
0 2 1 newMaxEvaluations I
MethodParameters:
Name Flags
newMaxEvaluations final
public org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder maxIterations(int);
descriptor: (I)Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
iload 1
putfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.maxIterations:I
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
0 2 1 newMaxIterations I
MethodParameters:
Name Flags
newMaxIterations final
public org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder checker(org.apache.commons.math3.optim.ConvergenceChecker<org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation>);
descriptor: (Lorg/apache/commons/math3/optim/ConvergenceChecker;)Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
putfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.checker:Lorg/apache/commons/math3/optim/ConvergenceChecker;
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
0 2 1 newChecker Lorg/apache/commons/math3/optim/ConvergenceChecker<Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem$Evaluation;>;
Signature: (Lorg/apache/commons/math3/optim/ConvergenceChecker<Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem$Evaluation;>;)Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
MethodParameters:
Name Flags
newChecker final
public org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder checkerPair(org.apache.commons.math3.optim.ConvergenceChecker<org.apache.commons.math3.optim.PointVectorValuePair>);
descriptor: (Lorg/apache/commons/math3/optim/ConvergenceChecker;)Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokestatic org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory.evaluationChecker:(Lorg/apache/commons/math3/optim/ConvergenceChecker;)Lorg/apache/commons/math3/optim/ConvergenceChecker;
invokevirtual org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.checker:(Lorg/apache/commons/math3/optim/ConvergenceChecker;)Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
0 1 1 newChecker Lorg/apache/commons/math3/optim/ConvergenceChecker<Lorg/apache/commons/math3/optim/PointVectorValuePair;>;
Signature: (Lorg/apache/commons/math3/optim/ConvergenceChecker<Lorg/apache/commons/math3/optim/PointVectorValuePair;>;)Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
MethodParameters:
Name Flags
newChecker final
public org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder model(org.apache.commons.math3.analysis.MultivariateVectorFunction, org.apache.commons.math3.analysis.MultivariateMatrixFunction);
descriptor: (Lorg/apache/commons/math3/analysis/MultivariateVectorFunction;Lorg/apache/commons/math3/analysis/MultivariateMatrixFunction;)Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
aload 2
invokestatic org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory.model:(Lorg/apache/commons/math3/analysis/MultivariateVectorFunction;Lorg/apache/commons/math3/analysis/MultivariateMatrixFunction;)Lorg/apache/commons/math3/fitting/leastsquares/MultivariateJacobianFunction;
invokevirtual org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.model:(Lorg/apache/commons/math3/fitting/leastsquares/MultivariateJacobianFunction;)Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
0 1 1 value Lorg/apache/commons/math3/analysis/MultivariateVectorFunction;
0 1 2 jacobian Lorg/apache/commons/math3/analysis/MultivariateMatrixFunction;
MethodParameters:
Name Flags
value final
jacobian final
public org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder model(org.apache.commons.math3.fitting.leastsquares.MultivariateJacobianFunction);
descriptor: (Lorg/apache/commons/math3/fitting/leastsquares/MultivariateJacobianFunction;)Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
putfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.model:Lorg/apache/commons/math3/fitting/leastsquares/MultivariateJacobianFunction;
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
0 2 1 newModel Lorg/apache/commons/math3/fitting/leastsquares/MultivariateJacobianFunction;
MethodParameters:
Name Flags
newModel final
public org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder target(org.apache.commons.math3.linear.RealVector);
descriptor: (Lorg/apache/commons/math3/linear/RealVector;)Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
putfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.target:Lorg/apache/commons/math3/linear/RealVector;
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
0 2 1 newTarget Lorg/apache/commons/math3/linear/RealVector;
MethodParameters:
Name Flags
newTarget final
public org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder target(double[]);
descriptor: ([D)Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: aload 0
new org.apache.commons.math3.linear.ArrayRealVector
dup
aload 1
iconst_0
invokespecial org.apache.commons.math3.linear.ArrayRealVector.<init>:([DZ)V
invokevirtual org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.target:(Lorg/apache/commons/math3/linear/RealVector;)Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
0 1 1 newTarget [D
MethodParameters:
Name Flags
newTarget final
public org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder start(org.apache.commons.math3.linear.RealVector);
descriptor: (Lorg/apache/commons/math3/linear/RealVector;)Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
putfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.start:Lorg/apache/commons/math3/linear/RealVector;
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
0 2 1 newStart Lorg/apache/commons/math3/linear/RealVector;
MethodParameters:
Name Flags
newStart final
public org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder start(double[]);
descriptor: ([D)Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: aload 0
new org.apache.commons.math3.linear.ArrayRealVector
dup
aload 1
iconst_0
invokespecial org.apache.commons.math3.linear.ArrayRealVector.<init>:([DZ)V
invokevirtual org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.start:(Lorg/apache/commons/math3/linear/RealVector;)Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
0 1 1 newStart [D
MethodParameters:
Name Flags
newStart final
public org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder weight(org.apache.commons.math3.linear.RealMatrix);
descriptor: (Lorg/apache/commons/math3/linear/RealMatrix;)Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
putfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.weight:Lorg/apache/commons/math3/linear/RealMatrix;
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
0 2 1 newWeight Lorg/apache/commons/math3/linear/RealMatrix;
MethodParameters:
Name Flags
newWeight final
public org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder lazyEvaluation(boolean);
descriptor: (Z)Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
iload 1
putfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.lazyEvaluation:Z
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
0 2 1 newValue Z
MethodParameters:
Name Flags
newValue final
public org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder parameterValidator(org.apache.commons.math3.fitting.leastsquares.ParameterValidator);
descriptor: (Lorg/apache/commons/math3/fitting/leastsquares/ParameterValidator;)Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
putfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.paramValidator:Lorg/apache/commons/math3/fitting/leastsquares/ParameterValidator;
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresBuilder;
0 2 1 newValidator Lorg/apache/commons/math3/fitting/leastsquares/ParameterValidator;
MethodParameters:
Name Flags
newValidator final
}
SourceFile: "LeastSquaresBuilder.java"
InnerClasses:
public abstract Evaluation = org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation of org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem