Skip to content

Commit

Permalink
add bigfloat type handling test
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Jan 29, 2020
1 parent 7d65bf3 commit 3b4e34f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/interface/type_handling.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
using OrdinaryDiffEq
prob = ODEProblem((u,p,t) -> -u,BigFloat(1.0),(0.0,1.0))
solve(prob,Tsit5())
solve(prob,KenCarp4())
1 change: 1 addition & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ if GROUP == "All" || GROUP == "Interface"
@time @safetestset "Stiffness Detection Tests" begin include("interface/stiffness_detection_test.jl") end
@time @safetestset "Composite Interpolation Tests" begin include("interface/composite_interpolation.jl") end
@time @safetestset "Export tests" begin include("interface/export_tests.jl") end
@time @safetestset "Derivative Utilities Tests" begin include("interface/type_handling.jl") end
@time @safetestset "Derivative Utilities Tests" begin include("interface/utility_tests.jl") end
@time @safetestset "DEStats Tests" begin include("interface/destats_tests.jl") end
@time @safetestset "AD Tests" begin include("interface/ad_tests.jl") end
Expand Down

0 comments on commit 3b4e34f

Please sign in to comment.