public class org.apache.commons.math3.fitting.leastsquares.LeastSquaresAdapter implements org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.fitting.leastsquares.LeastSquaresAdapter
  super_class: java.lang.Object
{
  private final org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem problem;
    descriptor: Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem);
    descriptor: (Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresAdapter this
        start local 1 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem problem
         0: .line 38
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 39
            aload 0 /* this */
            aload 1 /* problem */
            putfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresAdapter.problem:Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem;
         2: .line 40
            return
        end local 1 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem problem
        end local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresAdapter this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresAdapter;
            0    3     1  problem  Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem;
    MethodParameters:
         Name  Flags
      problem  final

  public org.apache.commons.math3.linear.RealVector getStart();
    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.LeastSquaresAdapter this
         0: .line 44
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresAdapter.problem:Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem;
            invokeinterface org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem.getStart:()Lorg/apache/commons/math3/linear/RealVector;
            areturn
        end local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresAdapter;

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

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

  public org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation evaluate(org.apache.commons.math3.linear.RealVector);
    descriptor: (Lorg/apache/commons/math3/linear/RealVector;)Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem$Evaluation;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresAdapter this
        start local 1 // org.apache.commons.math3.linear.RealVector point
         0: .line 60
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresAdapter.problem:Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem;
            aload 1 /* point */
            invokeinterface org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem.evaluate:(Lorg/apache/commons/math3/linear/RealVector;)Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem$Evaluation;
            areturn
        end local 1 // org.apache.commons.math3.linear.RealVector point
        end local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresAdapter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresAdapter;
            0    1     1  point  Lorg/apache/commons/math3/linear/RealVector;
    MethodParameters:
       Name  Flags
      point  final

  public org.apache.commons.math3.util.Incrementor getEvaluationCounter();
    descriptor: ()Lorg/apache/commons/math3/util/Incrementor;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresAdapter this
         0: .line 65
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresAdapter.problem:Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem;
            invokeinterface org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem.getEvaluationCounter:()Lorg/apache/commons/math3/util/Incrementor;
            areturn
        end local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresAdapter;

  public org.apache.commons.math3.util.Incrementor getIterationCounter();
    descriptor: ()Lorg/apache/commons/math3/util/Incrementor;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresAdapter this
         0: .line 70
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresAdapter.problem:Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem;
            invokeinterface org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem.getIterationCounter:()Lorg/apache/commons/math3/util/Incrementor;
            areturn
        end local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresAdapter;

  public org.apache.commons.math3.optim.ConvergenceChecker<org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation> getConvergenceChecker();
    descriptor: ()Lorg/apache/commons/math3/optim/ConvergenceChecker;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresAdapter this
         0: .line 75
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresAdapter.problem:Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem;
            invokeinterface org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem.getConvergenceChecker:()Lorg/apache/commons/math3/optim/ConvergenceChecker;
            areturn
        end local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresAdapter;
    Signature: ()Lorg/apache/commons/math3/optim/ConvergenceChecker<Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem$Evaluation;>;
}
SourceFile: "LeastSquaresAdapter.java"
InnerClasses:
  public abstract Evaluation = org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem$Evaluation of org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem