class org.apache.commons.math3.ode.ParameterJacobianWrapper implements org.apache.commons.math3.ode.ParameterJacobianProvider
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.apache.commons.math3.ode.ParameterJacobianWrapper
  super_class: java.lang.Object
{
  private final org.apache.commons.math3.ode.FirstOrderDifferentialEquations fode;
    descriptor: Lorg/apache/commons/math3/ode/FirstOrderDifferentialEquations;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.apache.commons.math3.ode.ParameterizedODE pode;
    descriptor: Lorg/apache/commons/math3/ode/ParameterizedODE;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.Map<java.lang.String, java.lang.Double> hParam;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/lang/String;Ljava/lang/Double;>;

  void <init>(org.apache.commons.math3.ode.FirstOrderDifferentialEquations, org.apache.commons.math3.ode.ParameterizedODE, org.apache.commons.math3.ode.ParameterConfiguration[]);
    descriptor: (Lorg/apache/commons/math3/ode/FirstOrderDifferentialEquations;Lorg/apache/commons/math3/ode/ParameterizedODE;[Lorg/apache/commons/math3/ode/ParameterConfiguration;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=9, args_size=4
        start local 0 // org.apache.commons.math3.ode.ParameterJacobianWrapper this
        start local 1 // org.apache.commons.math3.ode.FirstOrderDifferentialEquations fode
        start local 2 // org.apache.commons.math3.ode.ParameterizedODE pode
        start local 3 // org.apache.commons.math3.ode.ParameterConfiguration[] paramsAndSteps
         0: .line 49
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 52
            aload 0 /* this */
            aload 1 /* fode */
            putfield org.apache.commons.math3.ode.ParameterJacobianWrapper.fode:Lorg/apache/commons/math3/ode/FirstOrderDifferentialEquations;
         2: .line 53
            aload 0 /* this */
            aload 2 /* pode */
            putfield org.apache.commons.math3.ode.ParameterJacobianWrapper.pode:Lorg/apache/commons/math3/ode/ParameterizedODE;
         3: .line 54
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield org.apache.commons.math3.ode.ParameterJacobianWrapper.hParam:Ljava/util/Map;
         4: .line 57
            aload 3 /* paramsAndSteps */
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 10
      StackMap locals: org.apache.commons.math3.ode.ParameterJacobianWrapper org.apache.commons.math3.ode.FirstOrderDifferentialEquations org.apache.commons.math3.ode.ParameterizedODE org.apache.commons.math3.ode.ParameterConfiguration[] top int int org.apache.commons.math3.ode.ParameterConfiguration[]
      StackMap stack:
         5: aload 7
            iload 5
            aaload
            astore 4 /* param */
        start local 4 // org.apache.commons.math3.ode.ParameterConfiguration param
         6: .line 58
            aload 4 /* param */
            invokevirtual org.apache.commons.math3.ode.ParameterConfiguration.getParameterName:()Ljava/lang/String;
            astore 8 /* name */
        start local 8 // java.lang.String name
         7: .line 59
            aload 2 /* pode */
            aload 8 /* name */
            invokeinterface org.apache.commons.math3.ode.ParameterizedODE.isSupported:(Ljava/lang/String;)Z
            ifeq 9
         8: .line 60
            aload 0 /* this */
            getfield org.apache.commons.math3.ode.ParameterJacobianWrapper.hParam:Ljava/util/Map;
            aload 8 /* name */
            aload 4 /* param */
            invokevirtual org.apache.commons.math3.ode.ParameterConfiguration.getHP:()D
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 8 // java.lang.String name
        end local 4 // org.apache.commons.math3.ode.ParameterConfiguration param
         9: .line 57
      StackMap locals:
      StackMap stack:
            iinc 5 1
      StackMap locals:
      StackMap stack:
        10: iload 5
            iload 6
            if_icmplt 5
        11: .line 63
            return
        end local 3 // org.apache.commons.math3.ode.ParameterConfiguration[] paramsAndSteps
        end local 2 // org.apache.commons.math3.ode.ParameterizedODE pode
        end local 1 // org.apache.commons.math3.ode.FirstOrderDifferentialEquations fode
        end local 0 // org.apache.commons.math3.ode.ParameterJacobianWrapper this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   12     0            this  Lorg/apache/commons/math3/ode/ParameterJacobianWrapper;
            0   12     1            fode  Lorg/apache/commons/math3/ode/FirstOrderDifferentialEquations;
            0   12     2            pode  Lorg/apache/commons/math3/ode/ParameterizedODE;
            0   12     3  paramsAndSteps  [Lorg/apache/commons/math3/ode/ParameterConfiguration;
            6    9     4           param  Lorg/apache/commons/math3/ode/ParameterConfiguration;
            7    9     8            name  Ljava/lang/String;
    MethodParameters:
                Name  Flags
      fode            final
      pode            final
      paramsAndSteps  final

  public java.util.Collection<java.lang.String> getParametersNames();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.ode.ParameterJacobianWrapper this
         0: .line 67
            aload 0 /* this */
            getfield org.apache.commons.math3.ode.ParameterJacobianWrapper.pode:Lorg/apache/commons/math3/ode/ParameterizedODE;
            invokeinterface org.apache.commons.math3.ode.ParameterizedODE.getParametersNames:()Ljava/util/Collection;
            areturn
        end local 0 // org.apache.commons.math3.ode.ParameterJacobianWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/ode/ParameterJacobianWrapper;
    Signature: ()Ljava/util/Collection<Ljava/lang/String;>;

  public boolean isSupported(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.ode.ParameterJacobianWrapper this
        start local 1 // java.lang.String name
         0: .line 72
            aload 0 /* this */
            getfield org.apache.commons.math3.ode.ParameterJacobianWrapper.pode:Lorg/apache/commons/math3/ode/ParameterizedODE;
            aload 1 /* name */
            invokeinterface org.apache.commons.math3.ode.ParameterizedODE.isSupported:(Ljava/lang/String;)Z
            ireturn
        end local 1 // java.lang.String name
        end local 0 // org.apache.commons.math3.ode.ParameterJacobianWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/ode/ParameterJacobianWrapper;
            0    1     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public void computeParameterJacobian(double, double[], double[], java.lang.String, double[]);
    descriptor: (D[D[DLjava/lang/String;[D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=14, args_size=6
        start local 0 // org.apache.commons.math3.ode.ParameterJacobianWrapper this
        start local 1 // double t
        start local 3 // double[] y
        start local 4 // double[] yDot
        start local 5 // java.lang.String paramName
        start local 6 // double[] dFdP
         0: .line 80
            aload 0 /* this */
            getfield org.apache.commons.math3.ode.ParameterJacobianWrapper.fode:Lorg/apache/commons/math3/ode/FirstOrderDifferentialEquations;
            invokeinterface org.apache.commons.math3.ode.FirstOrderDifferentialEquations.getDimension:()I
            istore 7 /* n */
        start local 7 // int n
         1: .line 81
            aload 0 /* this */
            getfield org.apache.commons.math3.ode.ParameterJacobianWrapper.pode:Lorg/apache/commons/math3/ode/ParameterizedODE;
            aload 5 /* paramName */
            invokeinterface org.apache.commons.math3.ode.ParameterizedODE.isSupported:(Ljava/lang/String;)Z
            ifeq 14
         2: .line 82
            iload 7 /* n */
            newarray 7
            astore 8 /* tmpDot */
        start local 8 // double[] tmpDot
         3: .line 85
            aload 0 /* this */
            getfield org.apache.commons.math3.ode.ParameterJacobianWrapper.pode:Lorg/apache/commons/math3/ode/ParameterizedODE;
            aload 5 /* paramName */
            invokeinterface org.apache.commons.math3.ode.ParameterizedODE.getParameter:(Ljava/lang/String;)D
            dstore 9 /* p */
        start local 9 // double p
         4: .line 86
            aload 0 /* this */
            getfield org.apache.commons.math3.ode.ParameterJacobianWrapper.hParam:Ljava/util/Map;
            aload 5 /* paramName */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Double
            invokevirtual java.lang.Double.doubleValue:()D
            dstore 11 /* hP */
        start local 11 // double hP
         5: .line 87
            aload 0 /* this */
            getfield org.apache.commons.math3.ode.ParameterJacobianWrapper.pode:Lorg/apache/commons/math3/ode/ParameterizedODE;
            aload 5 /* paramName */
            dload 9 /* p */
            dload 11 /* hP */
            dadd
            invokeinterface org.apache.commons.math3.ode.ParameterizedODE.setParameter:(Ljava/lang/String;D)V
         6: .line 88
            aload 0 /* this */
            getfield org.apache.commons.math3.ode.ParameterJacobianWrapper.fode:Lorg/apache/commons/math3/ode/FirstOrderDifferentialEquations;
            dload 1 /* t */
            aload 3 /* y */
            aload 8 /* tmpDot */
            invokeinterface org.apache.commons.math3.ode.FirstOrderDifferentialEquations.computeDerivatives:(D[D[D)V
         7: .line 89
            iconst_0
            istore 13 /* i */
        start local 13 // int i
         8: goto 11
         9: .line 90
      StackMap locals: org.apache.commons.math3.ode.ParameterJacobianWrapper double double[] double[] java.lang.String double[] int double[] double double int
      StackMap stack:
            aload 6 /* dFdP */
            iload 13 /* i */
            aload 8 /* tmpDot */
            iload 13 /* i */
            daload
            aload 4 /* yDot */
            iload 13 /* i */
            daload
            dsub
            dload 11 /* hP */
            ddiv
            dastore
        10: .line 89
            iinc 13 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 13 /* i */
            iload 7 /* n */
            if_icmplt 9
        end local 13 // int i
        12: .line 92
            aload 0 /* this */
            getfield org.apache.commons.math3.ode.ParameterJacobianWrapper.pode:Lorg/apache/commons/math3/ode/ParameterizedODE;
            aload 5 /* paramName */
            dload 9 /* p */
            invokeinterface org.apache.commons.math3.ode.ParameterizedODE.setParameter:(Ljava/lang/String;D)V
        end local 11 // double hP
        end local 9 // double p
        end local 8 // double[] tmpDot
        13: .line 93
            goto 15
        14: .line 94
      StackMap locals: org.apache.commons.math3.ode.ParameterJacobianWrapper double double[] double[] java.lang.String double[] int
      StackMap stack:
            aload 6 /* dFdP */
            iconst_0
            iload 7 /* n */
            dconst_0
            invokestatic java.util.Arrays.fill:([DIID)V
        15: .line 97
      StackMap locals:
      StackMap stack:
            return
        end local 7 // int n
        end local 6 // double[] dFdP
        end local 5 // java.lang.String paramName
        end local 4 // double[] yDot
        end local 3 // double[] y
        end local 1 // double t
        end local 0 // org.apache.commons.math3.ode.ParameterJacobianWrapper this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   16     0       this  Lorg/apache/commons/math3/ode/ParameterJacobianWrapper;
            0   16     1          t  D
            0   16     3          y  [D
            0   16     4       yDot  [D
            0   16     5  paramName  Ljava/lang/String;
            0   16     6       dFdP  [D
            1   16     7          n  I
            3   13     8     tmpDot  [D
            4   13     9          p  D
            5   13    11         hP  D
            8   12    13          i  I
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.MaxCountExceededException
    MethodParameters:
           Name  Flags
      t          
      y          
      yDot       
      paramName  
      dFdP       
}
SourceFile: "ParameterJacobianWrapper.java"