Skip to content

Commit c78321f

Browse files
Fix warning
1 parent 56421fb commit c78321f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/systems/diffeqs/abstractodesystem.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1561,8 +1561,8 @@ function InitializationProblem{iip, specialize}(sys::AbstractODESystem,
15611561
end
15621562

15631563
parammap isa DiffEqBase.NullParameters || isempty(parammap) ?
1564-
[independent_variable(sys) => t] :
1565-
merge(todict(parammap), Dict(independent_variable(sys) => t))
1564+
[get_iv(sys) => t] :
1565+
merge(todict(parammap), Dict(get_iv(sys) => t))
15661566

15671567
if neqs == nunknown
15681568
NonlinearProblem(isys, guesses, parammap)

0 commit comments

Comments
 (0)