We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e9c82b commit d755191Copy full SHA for d755191
src/solve.jl
@@ -1,8 +1,7 @@
1
function DiffEqBase.__solve(jump_prob::DiffEqBase.AbstractJumpProblem{P},
2
- alg::DiffEqBase.DEAlgorithm, timeseries = [], ts = [], ks = [],
3
- recompile::Type{Val{recompile_flag}} = Val{true};
+ alg::DiffEqBase.DEAlgorithm;
4
kwargs...) where {P, recompile_flag}
5
- integrator = init(jump_prob, alg, timeseries, ts, ks, recompile; kwargs...)
+ integrator = init(jump_prob, alg; kwargs...)
6
solve!(integrator)
7
integrator.sol
8
end
0 commit comments