We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ab32b5 commit 16c7d13Copy full SHA for 16c7d13
test/L96m/data/dp5_full.npy
0 Bytes
test/L96m/data/tsitpap8_full.npy
test/L96m/runtests.jl
@@ -39,7 +39,7 @@ println("")
39
# integration testing ##########################################################
40
################################################################################
41
const T = 1.0
42
-const dtmax = 1e-4
+const dtmax = 1e-5
43
const saveat = 1e-2
44
pb_full = DE.ODEProblem(full, z0, (0.0, T), l96)
45
pb_bal = DE.ODEProblem(balanced, z0[1:l96.K], (0.0, T), l96)
@@ -69,9 +69,9 @@ println("steps:", lpad(length(sol_bal.t), LPAD_INTEGER),
69
"\telapsed:", lpad(elapsed_bal, LPAD_FLOAT))
70
71
@testset "integration testing" begin
72
- @test isapprox(sol_dp5[:,1:end], dp5_test, atol=1e-6)
73
- @test isapprox(sol_tp8[:,1:end], tp8_test, atol=1e-6)
74
- @test isapprox(sol_bal[:,1:end], bal_test, atol=1e-6)
+ @test isapprox(sol_dp5[:,1:end], dp5_test, atol=1e-5)
+ @test isapprox(sol_tp8[:,1:end], tp8_test, atol=1e-5)
+ @test isapprox(sol_bal[:,1:end], bal_test, atol=1e-5)
75
end
76
println("")
77
0 commit comments