class org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalValueAndJacobianFunction implements org.apache.commons.math3.fitting.leastsquares.ValueAndJacobianFunction
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalValueAndJacobianFunction
  super_class: java.lang.Object
{
  private final org.apache.commons.math3.analysis.MultivariateVectorFunction value;
    descriptor: Lorg/apache/commons/math3/analysis/MultivariateVectorFunction;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.apache.commons.math3.analysis.MultivariateMatrixFunction jacobian;
    descriptor: Lorg/apache/commons/math3/analysis/MultivariateMatrixFunction;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(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;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalValueAndJacobianFunction this
        start local 1 // org.apache.commons.math3.analysis.MultivariateVectorFunction value
        start local 2 // org.apache.commons.math3.analysis.MultivariateMatrixFunction jacobian
         0: .line 321
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 323
            aload 0 /* this */
            aload 1 /* value */
            putfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalValueAndJacobianFunction.value:Lorg/apache/commons/math3/analysis/MultivariateVectorFunction;
         2: .line 324
            aload 0 /* this */
            aload 2 /* jacobian */
            putfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalValueAndJacobianFunction.jacobian:Lorg/apache/commons/math3/analysis/MultivariateMatrixFunction;
         3: .line 325
            return
        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.LeastSquaresFactory$LocalValueAndJacobianFunction this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresFactory$LocalValueAndJacobianFunction;
            0    4     1     value  Lorg/apache/commons/math3/analysis/MultivariateVectorFunction;
            0    4     2  jacobian  Lorg/apache/commons/math3/analysis/MultivariateMatrixFunction;
    MethodParameters:
          Name  Flags
      value     final
      jacobian  final

  public org.apache.commons.math3.util.Pair<org.apache.commons.math3.linear.RealVector, org.apache.commons.math3.linear.RealMatrix> value(org.apache.commons.math3.linear.RealVector);
    descriptor: (Lorg/apache/commons/math3/linear/RealVector;)Lorg/apache/commons/math3/util/Pair;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalValueAndJacobianFunction this
        start local 1 // org.apache.commons.math3.linear.RealVector point
         0: .line 330
            aload 1 /* point */
            invokevirtual org.apache.commons.math3.linear.RealVector.toArray:()[D
            astore 2 /* p */
        start local 2 // double[] p
         1: .line 333
            new org.apache.commons.math3.util.Pair
            dup
            aload 0 /* this */
            aload 2 /* p */
            invokevirtual org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalValueAndJacobianFunction.computeValue:([D)Lorg/apache/commons/math3/linear/RealVector;
         2: .line 334
            aload 0 /* this */
            aload 2 /* p */
            invokevirtual org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalValueAndJacobianFunction.computeJacobian:([D)Lorg/apache/commons/math3/linear/RealMatrix;
         3: .line 333
            invokespecial org.apache.commons.math3.util.Pair.<init>:(Ljava/lang/Object;Ljava/lang/Object;)V
            areturn
        end local 2 // double[] p
        end local 1 // org.apache.commons.math3.linear.RealVector point
        end local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalValueAndJacobianFunction this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresFactory$LocalValueAndJacobianFunction;
            0    4     1  point  Lorg/apache/commons/math3/linear/RealVector;
            1    4     2      p  [D
    Signature: (Lorg/apache/commons/math3/linear/RealVector;)Lorg/apache/commons/math3/util/Pair<Lorg/apache/commons/math3/linear/RealVector;Lorg/apache/commons/math3/linear/RealMatrix;>;
    MethodParameters:
       Name  Flags
      point  final

  public org.apache.commons.math3.linear.RealVector computeValue(double[]);
    descriptor: ([D)Lorg/apache/commons/math3/linear/RealVector;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalValueAndJacobianFunction this
        start local 1 // double[] params
         0: .line 339
            new org.apache.commons.math3.linear.ArrayRealVector
            dup
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalValueAndJacobianFunction.value:Lorg/apache/commons/math3/analysis/MultivariateVectorFunction;
            aload 1 /* params */
            invokeinterface org.apache.commons.math3.analysis.MultivariateVectorFunction.value:([D)[D
            iconst_0
            invokespecial org.apache.commons.math3.linear.ArrayRealVector.<init>:([DZ)V
            areturn
        end local 1 // double[] params
        end local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalValueAndJacobianFunction this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresFactory$LocalValueAndJacobianFunction;
            0    1     1  params  [D
    MethodParameters:
        Name  Flags
      params  final

  public org.apache.commons.math3.linear.RealMatrix computeJacobian(double[]);
    descriptor: ([D)Lorg/apache/commons/math3/linear/RealMatrix;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalValueAndJacobianFunction this
        start local 1 // double[] params
         0: .line 344
            new org.apache.commons.math3.linear.Array2DRowRealMatrix
            dup
            aload 0 /* this */
            getfield org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalValueAndJacobianFunction.jacobian:Lorg/apache/commons/math3/analysis/MultivariateMatrixFunction;
            aload 1 /* params */
            invokeinterface org.apache.commons.math3.analysis.MultivariateMatrixFunction.value:([D)[[D
            iconst_0
            invokespecial org.apache.commons.math3.linear.Array2DRowRealMatrix.<init>:([[DZ)V
            areturn
        end local 1 // double[] params
        end local 0 // org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalValueAndJacobianFunction this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/apache/commons/math3/fitting/leastsquares/LeastSquaresFactory$LocalValueAndJacobianFunction;
            0    1     1  params  [D
    MethodParameters:
        Name  Flags
      params  final
}
SourceFile: "LeastSquaresFactory.java"
NestHost: org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory
InnerClasses:
  private LocalValueAndJacobianFunction = org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory$LocalValueAndJacobianFunction of org.apache.commons.math3.fitting.leastsquares.LeastSquaresFactory