Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ build_script:
Pkg.clone(pwd(), \"DelayDiffEq\"); Pkg.build(\"DelayDiffEq\")"

test_script:
- C:\projects\julia\bin\julia -e "Pkg.test(\"DelayDiffEq\")"
- C:\projects\julia\bin\julia -e "Pkg.checkout(\"OrdinaryDiffEq\",\"no_fastmath\"); Pkg.test(\"DelayDiffEq\")"
5 changes: 5 additions & 0 deletions test/unconstrained.jl
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,11 @@ alg4 = MethodOfSteps(DP5(), constrained=false, max_fixedpoint_iters=100,
fixedpoint_abstol=1e-12, fixedpoint_reltol=1e-12)
sol4 = solve(prob, alg4)

@show sol1.u
@show sol1.t
@show sol4.u
@show sol4.t

@test abs(sol1[end] - sol2[end]) < 2.5e-11
@test abs(sol1[end] - sol3[end]) < 1.3e-14
@test abs(sol1[end] - sol4[end]) < 7.6e-15
Expand Down