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 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
         0: .line 34
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
      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 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
         0: .line 69
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.model:Lorg/apache/commons/math3/fitting/leastsquares/MultivariateJacobianFunction;
         1: .line 70
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.target:Lorg/apache/commons/math3/linear/RealVector;
         2: .line 71
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.start:Lorg/apache/commons/math3/linear/RealVector;
         3: .line 72
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.weight:Lorg/apache/commons/math3/linear/RealMatrix;
         4: .line 73
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.checker:Lorg/apache/commons/math3/optim/ConvergenceChecker;
         5: .line 74
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.maxEvaluations:I
         6: .line 75
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.maxIterations:I
         7: .line 76
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.lazyEvaluation:Z
         8: .line 77
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.paramValidator:Lorg/apache/commons/math3/fitting/leastsquares/ParameterValidator;
         9: .line 69
            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 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
      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 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
        start local 1 // int newMaxEvaluations
         0: .line 87
            aload 0 /* this */
            iload 1 /* newMaxEvaluations */
            putfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.maxEvaluations:I
         1: .line 88
            aload 0 /* this */
            areturn
        end local 1 // int newMaxEvaluations
        end local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
      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 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
        start local 1 // int newMaxIterations
         0: .line 98
            aload 0 /* this */
            iload 1 /* newMaxIterations */
            putfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.maxIterations:I
         1: .line 99
            aload 0 /* this */
            areturn
        end local 1 // int newMaxIterations
        end local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
      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 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
        start local 1 // org.apache.commons.math3.optim.ConvergenceChecker newChecker
         0: .line 109
            aload 0 /* this */
            aload 1 /* newChecker */
            putfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.checker:Lorg/apache/commons/math3/optim/ConvergenceChecker;
         1: .line 110
            aload 0 /* this */
            areturn
        end local 1 // org.apache.commons.math3.optim.ConvergenceChecker newChecker
        end local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
      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 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
        start local 1 // org.apache.commons.math3.optim.ConvergenceChecker newChecker
         0: .line 122
            aload 0 /* this */
            aload 1 /* newChecker */
            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 // org.apache.commons.math3.optim.ConvergenceChecker newChecker
        end local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
      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 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
        start local 1 // org.apache.commons.math3.analysis.MultivariateVectorFunction value
        start local 2 // org.apache.commons.math3.analysis.MultivariateMatrixFunction jacobian
         0: .line 134
            aload 0 /* this */
            aload 1 /* value */
            aload 2 /* jacobian */
            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 // org.apache.commons.math3.analysis.MultivariateMatrixFunction jacobian
        end local 1 // org.apache.commons.math3.analysis.MultivariateVectorFunction value
        end local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
      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 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
        start local 1 // org.apache.commons.math3.fitting.leastsquares.MultivariateJacobianFunction newModel
         0: .line 144
            aload 0 /* this */
            aload 1 /* newModel */
            putfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.model:Lorg/apache/commons/math3/fitting/leastsquares/MultivariateJacobianFunction;
         1: .line 145
            aload 0 /* this */
            areturn
        end local 1 // org.apache.commons.math3.fitting.leastsquares.MultivariateJacobianFunction newModel
        end local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
      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 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
        start local 1 // org.apache.commons.math3.linear.RealVector newTarget
         0: .line 155
            aload 0 /* this */
            aload 1 /* newTarget */
            putfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.target:Lorg/apache/commons/math3/linear/RealVector;
         1: .line 156
            aload 0 /* this */
            areturn
        end local 1 // org.apache.commons.math3.linear.RealVector newTarget
        end local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
      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 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
        start local 1 // double[] newTarget
         0: .line 166
            aload 0 /* this */
            new org.apache.commons.math3.linear.ArrayRealVector
            dup
            aload 1 /* newTarget */
            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 // double[] newTarget
        end local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
      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 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
        start local 1 // org.apache.commons.math3.linear.RealVector newStart
         0: .line 176
            aload 0 /* this */
            aload 1 /* newStart */
            putfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.start:Lorg/apache/commons/math3/linear/RealVector;
         1: .line 177
            aload 0 /* this */
            areturn
        end local 1 // org.apache.commons.math3.linear.RealVector newStart
        end local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
      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 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
        start local 1 // double[] newStart
         0: .line 187
            aload 0 /* this */
            new org.apache.commons.math3.linear.ArrayRealVector
            dup
            aload 1 /* newStart */
            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 // double[] newStart
        end local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
      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 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
        start local 1 // org.apache.commons.math3.linear.RealMatrix newWeight
         0: .line 197
            aload 0 /* this */
            aload 1 /* newWeight */
            putfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.weight:Lorg/apache/commons/math3/linear/RealMatrix;
         1: .line 198
            aload 0 /* this */
            areturn
        end local 1 // org.apache.commons.math3.linear.RealMatrix newWeight
        end local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
      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 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
        start local 1 // boolean newValue
         0: .line 210
            aload 0 /* this */
            iload 1 /* newValue */
            putfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.lazyEvaluation:Z
         1: .line 211
            aload 0 /* this */
            areturn
        end local 1 // boolean newValue
        end local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
      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 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
        start local 1 // org.apache.commons.math3.fitting.leastsquares.ParameterValidator newValidator
         0: .line 223
            aload 0 /* this */
            aload 1 /* newValidator */
            putfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder.paramValidator:Lorg/apache/commons/math3/fitting/leastsquares/ParameterValidator;
         1: .line 224
            aload 0 /* this */
            areturn
        end local 1 // org.apache.commons.math3.fitting.leastsquares.ParameterValidator newValidator
        end local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresBuilder this
      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