Skip to content

Commit

Permalink
Merge pull request #73 from SciML/fixkwargs
Browse files Browse the repository at this point in the history
fix kwargs for FunctionMap
  • Loading branch information
ChrisRackauckas authored Oct 1, 2023
2 parents 66a89e3 + 2a0c6dc commit 17d2585
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/functionmap.jl
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ mutable struct DiscreteIntegrator{F, IIP, uType, tType, P, S} <:
end

function DiffEqBase.__init(prob::DiscreteProblem,
alg::SimpleFunctionMap)
sol = solve(prob, alg; calculate_values = false)
alg::SimpleFunctionMap)
sol = DiffEqBase.__solve(prob, alg; calculate_values = false)
F = typeof(prob.f)
IIP = isinplace(prob)
uType = typeof(prob.u0)
Expand Down

0 comments on commit 17d2585

Please sign in to comment.