Skip to content

Commit

Permalink
no need for extra function
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Jul 14, 2018
1 parent 70eb7f0 commit 4adaf5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/history_function.jl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
end

# ODE integrator
prob = ODEProblem(DiffEqProblemLibrary.f_2dlinear, ones(2), (0.0, 1.0))
prob = ODEProblem((du,u,p,t)->@.(du=p*u), ones(2), (0.0, 1.0),1.01)
integrator = init(prob, Tsit5())

# combined history function
Expand Down

0 comments on commit 4adaf5e

Please sign in to comment.