@@ -2838,7 +2838,7 @@ end
2838
2838
function SplitFunction {iip, specialize} (f1, f2;
2839
2839
mass_matrix = __has_mass_matrix (f1) ?
2840
2840
f1. mass_matrix : I,
2841
- _func_cache = nothing ,
2841
+ cache = nothing ,
2842
2842
analytic = __has_analytic (f1) ? f1. analytic :
2843
2843
nothing ,
2844
2844
tgrad = __has_tgrad (f1) ? f1. tgrad : nothing ,
@@ -2885,20 +2885,20 @@ function SplitFunction{iip, specialize}(f1, f2;
2885
2885
SplitFunction{iip, specialize, Any, Any, Any, Any, Any, Any, Any, Any, Any,
2886
2886
Any, Any, Any, Any, Any, Any, Any,
2887
2887
Any, Any, Union{Nothing, OverrideInitData}, Union{Nothing, ODE_NLProbData}}(
2888
- f1, f2, mass_matrix, _func_cache ,
2888
+ f1, f2, mass_matrix, cache ,
2889
2889
analytic,
2890
2890
tgrad, jac, jvp, vjp, jac_prototype, W_prototype,
2891
2891
sparsity, Wfact, Wfact_t, paramjac,
2892
2892
observed, colorvec, sys, initdata, nlprob_data)
2893
2893
else
2894
2894
SplitFunction{iip, specialize, typeof (f1), typeof (f2), typeof (mass_matrix),
2895
- typeof (_func_cache ), typeof (analytic),
2895
+ typeof (cache ), typeof (analytic),
2896
2896
typeof (tgrad), typeof (jac), typeof (jvp), typeof (vjp),
2897
2897
typeof (jac_prototype), typeof (W_prototype), typeof (sparsity),
2898
2898
typeof (Wfact), typeof (Wfact_t), typeof (paramjac), typeof (observed),
2899
2899
typeof (colorvec),
2900
2900
typeof (sys), typeof (initdata), typeof (nlprob_data)}(f1, f2,
2901
- mass_matrix, _func_cache , analytic, tgrad, jac,
2901
+ mass_matrix, cache , analytic, tgrad, jac,
2902
2902
jvp, vjp, jac_prototype, W_prototype,
2903
2903
sparsity, Wfact, Wfact_t, paramjac, observed, colorvec, sys,
2904
2904
initdata, nlprob_data)
0 commit comments