Skip to content

Commit 0cf407b

Browse files
Remove new suffix from func name
1 parent 4c8d6dc commit 0cf407b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

test/convergence.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ function tabulate_convergence_orders_imex_ark()
7979
algs = algorithm.(tabs)
8080
prob_names = map(t -> t.test_name, test_cases)
8181
expected_orders = ODE.alg_order.(tabs)
82-
tabulate_convergence_orders_new(prob_names, algs, results, expected_orders; tabs)
82+
tabulate_convergence_orders(prob_names, algs, results, expected_orders; tabs)
8383
return results
8484
end
8585
tabulate_convergence_orders_imex_ark()
@@ -108,7 +108,7 @@ function tabulate_convergence_orders_ark()
108108
prob_names = first.(names_probs_sols)
109109
algs = first.(algs_orders)
110110
expected_orders = last.(algs_orders)
111-
tabulate_convergence_orders_new(prob_names, algs, co, expected_orders)
111+
tabulate_convergence_orders(prob_names, algs, co, expected_orders)
112112
end
113113

114114
tabulate_convergence_orders_ark()
@@ -147,7 +147,7 @@ function tabulate_convergence_orders_multirate()
147147
prob_names = first.(names_probs_sols)
148148
algs = first.(algs_orders)
149149
expected_orders = last.(algs_orders)
150-
tabulate_convergence_orders_new(prob_names, algs, co, expected_orders)
150+
tabulate_convergence_orders(prob_names, algs, co, expected_orders)
151151
end
152152

153153
tabulate_convergence_orders_multirate()

test/convergence_utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ function convergence_order_results(tabs, test_cases)
8989
return results
9090
end
9191

92-
function tabulate_convergence_orders_new(prob_names, algs, results, expected_orders; tabs = nothing)
92+
function tabulate_convergence_orders(prob_names, algs, results, expected_orders; tabs = nothing)
9393
data = hcat(map(prob_names) do name
9494
map(alg -> results[name, typeof(alg)], algs)
9595
end...)

0 commit comments

Comments
 (0)