@@ -46,8 +46,6 @@ setups = [Dict(:alg=>DP5())
4646 Dict(:alg=>IRKGL16(simd = true))
4747 Dict(:alg=>Tsit5(), :prob_choice => 2)
4848 Dict(:alg=>Vern6(), :prob_choice => 2)
49- Dict(:alg=>IRKGL16(simd = false), :prob_choice => 2)
50- Dict(:alg=>IRKGL16(simd = true), :prob_choice => 2)
5149 Dict(:alg=>MER5v2(), :prob_choice => 2)
5250 Dict(:alg=>MER6v2(), :prob_choice => 2)
5351 Dict(:alg=>RK6v4(), :prob_choice => 2)]
@@ -70,9 +68,7 @@ setups = [Dict(:alg=>DP5())
7068 Dict(:alg=>IRKGL16(simd = false))
7169 Dict(:alg=>IRKGL16(simd = true))
7270 Dict(:alg=>Tsit5(), :prob_choice => 2)
73- Dict(:alg=>Vern6(), :prob_choice => 2)
74- Dict(:alg=>IRKGL16(simd = false), :prob_choice => 2)
75- Dict(:alg=>IRKGL16(simd = true), :prob_choice => 2)]
71+ Dict(:alg=>Vern6(), :prob_choice => 2)]
7672wp = WorkPrecisionSet(
7773 probs, abstols, reltols, setups; appxsol = test_sol, maxiters = 10000,
7874 error_estimate = :L2, dense_errors = true, numruns = 100)
@@ -96,9 +92,7 @@ setups = [Dict(:alg=>DP8())
9692 Dict(:alg=>Vern6(), :prob_choice => 2)
9793 Dict(:alg=>Vern7(), :prob_choice => 2)
9894 Dict(:alg=>Vern8(), :prob_choice => 2)
99- Dict(:alg=>Vern9(), :prob_choice => 2)
100- Dict(:alg=>IRKGL16(simd = false), :prob_choice => 2)
101- Dict(:alg=>IRKGL16(simd = true), :prob_choice => 2)]
95+ Dict(:alg=>Vern9(), :prob_choice => 2)]
10296wp = WorkPrecisionSet(probs, abstols, reltols, setups; appxsol = test_sol,
10397 save_everystep = false, maxiters = 1000, numruns = 100)
10498plot(wp)
@@ -117,8 +111,6 @@ setups = [Dict(:alg=>odex())
117111 Dict(:alg=>Vern7(), :prob_choice => 2)
118112 Dict(:alg=>Vern8(), :prob_choice => 2)
119113 Dict(:alg=>Vern9(), :prob_choice => 2)
120- Dict(:alg=>IRKGL16(simd = false), :prob_choice => 2)
121- Dict(:alg=>IRKGL16(simd = true), :prob_choice => 2)
122114 Dict(:alg=>CVODE_Adams())
123115 Dict(:alg=>lsoda())
124116 Dict(:alg=>ARKODE(Sundials.Explicit(), order = 6))]
@@ -141,9 +133,7 @@ setups = [Dict(:alg=>DP8())
141133 Dict(:alg=>Vern6(), :prob_choice => 2)
142134 Dict(:alg=>Vern7(), :prob_choice => 2)
143135 Dict(:alg=>Vern8(), :prob_choice => 2)
144- Dict(:alg=>Vern9(), :prob_choice => 2)
145- Dict(:alg=>IRKGL16(simd = false), :prob_choice => 2)
146- Dict(:alg=>IRKGL16(simd = true), :prob_choice => 2)]
136+ Dict(:alg=>Vern9(), :prob_choice => 2)]
147137wp = WorkPrecisionSet(probs, abstols, reltols, setups; appxsol = test_sol, dense = true,
148138 maxiters = 1000, error_estimate = :L2, numruns = 100)
149139plot(wp)
@@ -166,15 +156,13 @@ setups = [Dict(:alg=>Tsit5())
166156 Dict(:alg=>IRKGL16(simd = true))
167157 Dict(:alg=>Vern9(), :prob_choice => 2)
168158 Dict(:alg=>VCABM(), :prob_choice => 2)
169- Dict(:alg=>IRKGL16(simd = false), :prob_choice => 2)
170- Dict(:alg=>IRKGL16(simd = true), :prob_choice => 2)
171159 Dict(:alg=>AitkenNeville(min_order = 1, max_order = 9, init_order = 4, threading = true))
172160 Dict(:alg=>ExtrapolationMidpointDeuflhard(
173161 min_order = 1, max_order = 9, init_order = 4, threading = true))
174162 Dict(:alg=>ExtrapolationMidpointHairerWanner(
175163 min_order = 2, max_order = 11, init_order = 4, threading = true))]
176164solnames = ["Tsit5", "Vern9", "VCABM", "IRKGL16", "IRKGL16 SIMD",
177- "Vern9 Static", "VCABM Static", "IRKGL16 Static", "IRKGL16 SIMD Static",
165+ "Vern9 Static", "VCABM Static",
178166 "AitkenNeville", "Midpoint Deuflhard", "Midpoint Hairer Wanner"]
179167wp = WorkPrecisionSet(
180168 probs, abstols, reltols, setups; appxsol = test_sol, names = solnames,
0 commit comments