Skip to content

Commit 3791ff6

Browse files
author
Oscar Smith
authored
fixes
1 parent 07fdb85 commit 3791ff6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/scimlfunctions.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2500,7 +2500,7 @@ function ODEFunction{iip, specialize}(f;
25002500
typeof(sparsity), Any, Any, typeof(W_prototype), Any,
25012501
Any,
25022502
typeof(_colorvec),
2503-
typeof(sys), Any, Any}(_f, mass_matrix, analytic, tgrad, jac,
2503+
typeof(sys), Union{Nothing, OverrideInitData}, Union{Nothing, ODE_NLProbData}}(_f, mass_matrix, analytic, tgrad, jac,
25042504
jvp, vjp, jac_prototype, sparsity, Wfact,
25052505
Wfact_t, W_prototype, paramjac,
25062506
observed, _colorvec, sys, initdata, nlprob_data)
@@ -2546,7 +2546,7 @@ function unwrapped_f(f::ODEFunction, newf = unwrapped_f(f.f))
25462546
Any, Any, Any, Any, typeof(f.jac_prototype),
25472547
typeof(f.sparsity), Any, Any, Any,
25482548
Any, typeof(f.colorvec),
2549-
typeof(f.sys), Any, Any}(
2549+
typeof(f.sys), Union{Nothing, OverrideInitData}, Union{Nothing, ODE_NLProbData}}(
25502550
newf, f.mass_matrix, f.analytic, f.tgrad, f.jac,
25512551
f.jvp, f.vjp, f.jac_prototype, f.sparsity, f.Wfact,
25522552
f.Wfact_t, f.W_prototype, f.paramjac,
@@ -2770,7 +2770,7 @@ function SplitFunction{iip, specialize}(f1, f2;
27702770
if specialize === NoSpecialize
27712771
SplitFunction{iip, specialize, Any, Any, Any, Any, Any, Any, Any, Any, Any,
27722772
Any, Any, Any, Any, Any, Any, Any,
2773-
Any, Any, Any, Any}(f1, f2, mass_matrix, _func_cache,
2773+
Any, Any, Union{Nothing, OverrideInitData}, Union{Nothing, ODE_NLProbData}}(f1, f2, mass_matrix, _func_cache,
27742774
analytic,
27752775
tgrad, jac, jvp, vjp, jac_prototype, W_prototype,
27762776
sparsity, Wfact, Wfact_t, paramjac,
@@ -3076,7 +3076,7 @@ function SDEFunction{iip, specialize}(f, g;
30763076
typeof(sys), typeof(initialization_data)}(
30773077
_f, _g, mass_matrix,
30783078
analytic, tgrad, jac,
3079-
jvp, vjp,
3079+
jvp, vjp,initialization_data
30803080
jac_prototype,
30813081
sparsity, Wfact,
30823082
Wfact_t,

0 commit comments

Comments
 (0)