Skip to content

Commit

Permalink
fix static arrays 0.6 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed May 15, 2017
1 parent df7db26 commit f792d76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/static_array_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ sol = solve(ode, EM(), dt=1.e-2)
#sol = solve(ode, SRIW1(), dt=1.e-2)


u0 = zero(MVector{2,Float64}) + 1
u0 = ones(MVector{2,Float64})
ode = SDEProblem(f, f, u0, (0.,1.))
sol = solve(ode, EM(), dt=1.e-2)
sol = solve(ode, SRIW1())

u0 = zero(SVector{2,Float64}) + 1
u0 = ones(SVector{2,Float64})
f = (t,u) -> u
prob = SDEProblem(f, f, u0, (0.,1.))
sol = solve(ode, EM(), dt=1.e-2)
Expand Down

0 comments on commit f792d76

Please sign in to comment.