Skip to content

Commit d755191

Browse files
Don't use undocumented solve.jl arguments
1 parent 5e9c82b commit d755191

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/solve.jl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
function DiffEqBase.__solve(jump_prob::DiffEqBase.AbstractJumpProblem{P},
2-
alg::DiffEqBase.DEAlgorithm, timeseries = [], ts = [], ks = [],
3-
recompile::Type{Val{recompile_flag}} = Val{true};
2+
alg::DiffEqBase.DEAlgorithm;
43
kwargs...) where {P, recompile_flag}
5-
integrator = init(jump_prob, alg, timeseries, ts, ks, recompile; kwargs...)
4+
integrator = init(jump_prob, alg; kwargs...)
65
solve!(integrator)
76
integrator.sol
87
end

0 commit comments

Comments
 (0)