Skip to content

Commit 57dc28b

Browse files
match the new tableau format
1 parent c72d4b8 commit 57dc28b

File tree

3 files changed

+158
-159
lines changed

3 files changed

+158
-159
lines changed

src/benchmark.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function ode_shootout(prob::AbstractODEProblem,setups;appxsol=nothing,numruns=20
3131
timeseries_errors = error_estimate TIMESERIES_ERRORS
3232
dense_errors = error_estimate DENSE_ERRORS
3333
if names == nothing
34-
names = [typeof(string(setups[i][:alg])) for i=1:N]
34+
names = [string(typeof(setups[i][:alg])) for i=1:N]
3535
end
3636
for i in eachindex(setups)
3737
sol = solve(prob,setups[i][:alg];timeseries_errors=timeseries_errors,

test/benchmark_tests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using OrdinaryDiffEq, DiffEqDevTools, DiffEqProblemLibrary, DiffEqBase
1+
using OrdinaryDiffEq, DiffEqDevTools, DiffEqProblemLibrary, DiffEqBase, Base.Test
22

33
## Setup Tests
44

0 commit comments

Comments
 (0)