Skip to content

Commit bebd61a

Browse files
Update scimlfunctions.jl
1 parent 4363bd7 commit bebd61a

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/scimlfunctions.jl

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2601,7 +2601,7 @@ end
26012601

26022602
@add_kwonly function SplitFunction(f1, f2, mass_matrix, cache, analytic, tgrad, jac, jvp,
26032603
vjp, jac_prototype, sparsity, Wfact, Wfact_t, paramjac,
2604-
observed, colorvec, sys)
2604+
observed, colorvec, sys, initializeprob, initializeprobmap)
26052605
f1 = ODEFunction(f1)
26062606
f2 = ODEFunction(f2)
26072607

@@ -2615,8 +2615,10 @@ end
26152615
typeof(cache), typeof(analytic), typeof(tgrad), typeof(jac), typeof(jvp),
26162616
typeof(vjp), typeof(jac_prototype), typeof(sparsity),
26172617
typeof(Wfact), typeof(Wfact_t), typeof(paramjac), typeof(observed), typeof(colorvec),
2618-
typeof(sys)}(f1, f2, mass_matrix, cache, analytic, tgrad, jac, jvp, vjp,
2619-
jac_prototype, sparsity, Wfact, Wfact_t, paramjac, observed, colorvec, sys)
2618+
typeof(sys), typeof(initializeprob), typeof(initializeprobmap}(f1, f2, mass_matrix,
2619+
cache, analytic, tgrad, jac, jvp, vjp,
2620+
jac_prototype, sparsity, Wfact, Wfact_t, paramjac, observed, colorvec, sys,
2621+
initializeprob, initializeprobmap)
26202622
end
26212623
function SplitFunction{iip, specialize}(f1, f2;
26222624
mass_matrix = __has_mass_matrix(f1) ?

0 commit comments

Comments
 (0)