Skip to content

Commit 7a84d51

Browse files
Merge pull request #126 from SciML/ChrisRackauckas-patch-1
Patch for latest SciMLBase requirements
2 parents f09d0ae + 184820e commit 7a84d51

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/ode_def_opts.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,8 @@ function ode_def_opts(name::Symbol, opts::Dict{Symbol, Bool}, curmod, ex::Expr,
180180
indepvar::Symbol
181181
colorvec::Nothing
182182
sys::S
183+
initialization_data::Nothing
184+
nlprob_data::Nothing
183185
end
184186

185187
(f::$name)(args...) = f.f(args...)
@@ -193,6 +195,6 @@ function ode_def_opts(name::Symbol, opts::Dict{Symbol, Bool}, curmod, ex::Expr,
193195
$name($fname, ParameterizedFunctions.LinearAlgebra.I, nothing, $tname, $jname,
194196
nothing, nothing,
195197
nothing, nothing, $Wname, $W_tname, nothing, $syms, $(Meta.quot(depvar)),
196-
nothing, $sys)
198+
nothing, $sys, nothing, nothing)
197199
end |> esc
198200
end

test/qa.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ using ParameterizedFunctions, Aqua
88
Aqua.test_project_extras(ParameterizedFunctions)
99
Aqua.test_stale_deps(ParameterizedFunctions)
1010
Aqua.test_unbound_args(ParameterizedFunctions)
11-
Aqua.test_undefined_exports(ParameterizedFunctions, broken = true)
11+
Aqua.test_undefined_exports(ParameterizedFunctions)
1212
end

0 commit comments

Comments
 (0)