Skip to content

Commit

Permalink
Should be FODEProblem
Browse files Browse the repository at this point in the history
Signed-off-by: ErikQQY <[email protected]>
  • Loading branch information
ErikQQY committed Apr 5, 2024
1 parent 070b570 commit 8cbe7f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bench/runbenchmarks.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function Brusselator!(du, u, p, t)
du[2] = μ*u[1]-(u[1])^2*u[1]
end

prob = FODESystem(Brusselator!, α, u0, (0, 20))
prob = FODEProblem(Brusselator!, α, u0, (0, 20))

SUITE["FLMM"]["BDF"] = @benchmarkable solve(prob, BDF(), dt=0.01)
SUITE["FLMM"]["Trapezoid"] = @benchmarkable solve(prob, Trapezoid(), dt=0.01)
Expand Down

0 comments on commit 8cbe7f9

Please sign in to comment.