Skip to content

Commit 5b80eb8

Browse files
fix some constructors
1 parent afc6614 commit 5b80eb8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/scimlfunctions.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3231,7 +3231,7 @@ function DAEFunction{iip, specialize}(f;
32313231
DAEFunction{iip, specialize, Any, Any, Any,
32323232
Any, Any, Any, Any, Any,
32333233
Any, Any, Any,
3234-
Any, typeof(_colorvec), Any}(_f, analytic, tgrad, jac, jvp,
3234+
Any, typeof(_colorvec), Any, Any, Any}(_f, analytic, tgrad, jac, jvp,
32353235
vjp, jac_prototype, sparsity,
32363236
Wfact, Wfact_t, paramjac, observed,
32373237
_colorvec, sys, initializeprob, initializeprobmap)
@@ -3241,7 +3241,8 @@ function DAEFunction{iip, specialize}(f;
32413241
typeof(sparsity), typeof(Wfact), typeof(Wfact_t),
32423242
typeof(paramjac),
32433243
typeof(observed), typeof(_colorvec),
3244-
typeof(sys)}(_f, analytic, tgrad, jac, jvp, vjp,
3244+
typeof(sys), typeof(initializeprob), typeof(initializeprobmap)}(
3245+
_f, analytic, tgrad, jac, jvp, vjp,
32453246
jac_prototype, sparsity, Wfact, Wfact_t,
32463247
paramjac, observed,
32473248
_colorvec, sys, initializeprob, initializeprobmap)

0 commit comments

Comments
 (0)