public abstract class org.apache.commons.math3.fitting.AbstractCurveFitter
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.apache.commons.math3.fitting.AbstractCurveFitter
  super_class: java.lang.Object
{
  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.AbstractCurveFitter this
         0: .line 52
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.apache.commons.math3.fitting.AbstractCurveFitter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/fitting/AbstractCurveFitter;

  public double[] fit(java.util.Collection<org.apache.commons.math3.fitting.WeightedObservedPoint>);
    descriptor: (Ljava/util/Collection;)[D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.fitting.AbstractCurveFitter this
        start local 1 // java.util.Collection points
         0: .line 63
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.fitting.AbstractCurveFitter.getOptimizer:()Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresOptimizer;
            aload 0 /* this */
            aload 1 /* points */
            invokevirtual org.apache.commons.math3.fitting.AbstractCurveFitter.getProblem:(Ljava/util/Collection;)Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem;
            invokeinterface org.apache.commons.math3.fitting.leastsquares.LeastSquaresOptimizer.optimize:(Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem;)Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresOptimizer$Optimum;
            invokeinterface org.apache.commons.math3.fitting.leastsquares.LeastSquaresOptimizer$Optimum.getPoint:()Lorg/apache/commons/math3/linear/RealVector;
            invokevirtual org.apache.commons.math3.linear.RealVector.toArray:()[D
            areturn
        end local 1 // java.util.Collection points
        end local 0 // org.apache.commons.math3.fitting.AbstractCurveFitter this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/apache/commons/math3/fitting/AbstractCurveFitter;
            0    1     1  points  Ljava/util/Collection<Lorg/apache/commons/math3/fitting/WeightedObservedPoint;>;
    Signature: (Ljava/util/Collection<Lorg/apache/commons/math3/fitting/WeightedObservedPoint;>;)[D
    MethodParameters:
        Name  Flags
      points  

  protected org.apache.commons.math3.fitting.leastsquares.LeastSquaresOptimizer getOptimizer();
    descriptor: ()Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresOptimizer;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.fitting.AbstractCurveFitter this
         0: .line 76
            new org.apache.commons.math3.fitting.leastsquares.LevenbergMarquardtOptimizer
            dup
            invokespecial org.apache.commons.math3.fitting.leastsquares.LevenbergMarquardtOptimizer.<init>:()V
            areturn
        end local 0 // org.apache.commons.math3.fitting.AbstractCurveFitter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/fitting/AbstractCurveFitter;

  protected abstract org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem getProblem(java.util.Collection<org.apache.commons.math3.fitting.WeightedObservedPoint>);
    descriptor: (Ljava/util/Collection;)Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    Signature: (Ljava/util/Collection<Lorg/apache/commons/math3/fitting/WeightedObservedPoint;>;)Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresProblem;
    MethodParameters:
        Name  Flags
      points  
}
SourceFile: "AbstractCurveFitter.java"
NestMembers:
  org.apache.commons.math3.fitting.AbstractCurveFitter$TheoreticalValuesFunction  org.apache.commons.math3.fitting.AbstractCurveFitter$TheoreticalValuesFunction$1  org.apache.commons.math3.fitting.AbstractCurveFitter$TheoreticalValuesFunction$2
InnerClasses:
  protected TheoreticalValuesFunction = org.apache.commons.math3.fitting.AbstractCurveFitter$TheoreticalValuesFunction of org.apache.commons.math3.fitting.AbstractCurveFitter
  public abstract Optimum = org.apache.commons.math3.fitting.leastsquares.LeastSquaresOptimizer$Optimum of org.apache.commons.math3.fitting.leastsquares.LeastSquaresOptimizer