class org.apache.commons.math3.fitting.leastsquares.OptimumImpl implements org.apache.commons.math3.fitting.leastsquares.LeastSquaresOptimizer$Optimum
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.apache.commons.math3.fitting.leastsquares.OptimumImpl
  super_class: java.lang.Object
{
  private final org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation value;
    descriptor: Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem$Evaluation;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int evaluations;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int iterations;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation, int, int);
    descriptor: (Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem$Evaluation;II)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.apache.commons.math3.fitting.leastsquares.OptimumImpl this
        start local 1 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation value
        start local 2 // int evaluations
        start local 3 // int iterations
         0: .line 45
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 46
            aload 0 /* this */
            aload 1 /* value */
            putfield org.apache.commons.math3.fitting.leastsquares.OptimumImpl.value:Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem$Evaluation;
         2: .line 47
            aload 0 /* this */
            iload 2 /* evaluations */
            putfield org.apache.commons.math3.fitting.leastsquares.OptimumImpl.evaluations:I
         3: .line 48
            aload 0 /* this */
            iload 3 /* iterations */
            putfield org.apache.commons.math3.fitting.leastsquares.OptimumImpl.iterations:I
         4: .line 49
            return
        end local 3 // int iterations
        end local 2 // int evaluations
        end local 1 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation value
        end local 0 // org.apache.commons.math3.fitting.leastsquares.OptimumImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lorg/apache/commons/math3/fitting/leastsquares/OptimumImpl;
            0    5     1        value  Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem$Evaluation;
            0    5     2  evaluations  I
            0    5     3   iterations  I
    MethodParameters:
             Name  Flags
      value        final
      evaluations  final
      iterations   final

  public int getEvaluations();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.fitting.leastsquares.OptimumImpl this
         0: .line 55
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.leastsquares.OptimumImpl.evaluations:I
            ireturn
        end local 0 // org.apache.commons.math3.fitting.leastsquares.OptimumImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/fitting/leastsquares/OptimumImpl;

  public int getIterations();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.fitting.leastsquares.OptimumImpl this
         0: .line 60
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.leastsquares.OptimumImpl.iterations:I
            ireturn
        end local 0 // org.apache.commons.math3.fitting.leastsquares.OptimumImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/fitting/leastsquares/OptimumImpl;

  public org.apache.commons.math3.linear.RealMatrix getCovariances(double);
    descriptor: (D)Lorg/apache/commons/math3/linear/RealMatrix;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.fitting.leastsquares.OptimumImpl this
        start local 1 // double threshold
         0: .line 65
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.leastsquares.OptimumImpl.value:Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem$Evaluation;
            dload 1 /* threshold */
            invokeinterface org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation.getCovariances:(D)Lorg/apache/commons/math3/linear/RealMatrix;
            areturn
        end local 1 // double threshold
        end local 0 // org.apache.commons.math3.fitting.leastsquares.OptimumImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/apache/commons/math3/fitting/leastsquares/OptimumImpl;
            0    1     1  threshold  D
    MethodParameters:
           Name  Flags
      threshold  

  public org.apache.commons.math3.linear.RealVector getSigma(double);
    descriptor: (D)Lorg/apache/commons/math3/linear/RealVector;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.fitting.leastsquares.OptimumImpl this
        start local 1 // double covarianceSingularityThreshold
         0: .line 70
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.leastsquares.OptimumImpl.value:Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem$Evaluation;
            dload 1 /* covarianceSingularityThreshold */
            invokeinterface org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation.getSigma:(D)Lorg/apache/commons/math3/linear/RealVector;
            areturn
        end local 1 // double covarianceSingularityThreshold
        end local 0 // org.apache.commons.math3.fitting.leastsquares.OptimumImpl this
      LocalVariableTable:
        Start  End  Slot                            Name  Signature
            0    1     0                            this  Lorg/apache/commons/math3/fitting/leastsquares/OptimumImpl;
            0    1     1  covarianceSingularityThreshold  D
    MethodParameters:
                                Name  Flags
      covarianceSingularityThreshold  

  public double getRMS();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.fitting.leastsquares.OptimumImpl this
         0: .line 75
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.leastsquares.OptimumImpl.value:Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem$Evaluation;
            invokeinterface org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation.getRMS:()D
            dreturn
        end local 0 // org.apache.commons.math3.fitting.leastsquares.OptimumImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/fitting/leastsquares/OptimumImpl;

  public org.apache.commons.math3.linear.RealMatrix getJacobian();
    descriptor: ()Lorg/apache/commons/math3/linear/RealMatrix;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.fitting.leastsquares.OptimumImpl this
         0: .line 80
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.leastsquares.OptimumImpl.value:Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem$Evaluation;
            invokeinterface org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation.getJacobian:()Lorg/apache/commons/math3/linear/RealMatrix;
            areturn
        end local 0 // org.apache.commons.math3.fitting.leastsquares.OptimumImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/fitting/leastsquares/OptimumImpl;

  public double getCost();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.fitting.leastsquares.OptimumImpl this
         0: .line 85
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.leastsquares.OptimumImpl.value:Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem$Evaluation;
            invokeinterface org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation.getCost:()D
            dreturn
        end local 0 // org.apache.commons.math3.fitting.leastsquares.OptimumImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/fitting/leastsquares/OptimumImpl;

  public org.apache.commons.math3.linear.RealVector getResiduals();
    descriptor: ()Lorg/apache/commons/math3/linear/RealVector;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.fitting.leastsquares.OptimumImpl this
         0: .line 90
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.leastsquares.OptimumImpl.value:Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem$Evaluation;
            invokeinterface org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation.getResiduals:()Lorg/apache/commons/math3/linear/RealVector;
            areturn
        end local 0 // org.apache.commons.math3.fitting.leastsquares.OptimumImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/fitting/leastsquares/OptimumImpl;

  public org.apache.commons.math3.linear.RealVector getPoint();
    descriptor: ()Lorg/apache/commons/math3/linear/RealVector;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.fitting.leastsquares.OptimumImpl this
         0: .line 95
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.leastsquares.OptimumImpl.value:Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem$Evaluation;
            invokeinterface org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation.getPoint:()Lorg/apache/commons/math3/linear/RealVector;
            areturn
        end local 0 // org.apache.commons.math3.fitting.leastsquares.OptimumImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/fitting/leastsquares/OptimumImpl;
}
SourceFile: "OptimumImpl.java"
InnerClasses:
  public abstract Optimum = org.apache.commons.math3.fitting.leastsquares.LeastSquaresOptimizer$Optimum of org.apache.commons.math3.fitting.leastsquares.LeastSquaresOptimizer
  public abstract Evaluation = org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation of org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem