Skip to content

Commit 71233d2

Browse files
committed
broken 3rd order Rosenbrock refactor
1 parent f17e149 commit 71233d2

File tree

6 files changed

+133
-2234
lines changed

6 files changed

+133
-2234
lines changed
Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,8 @@
1-
function DiffEqBase.interp_summary(::Type{cacheType},
2-
dense::Bool) where {
3-
cacheType <:
4-
Union{Rosenbrock23ConstantCache,
5-
Rosenbrock32ConstantCache,
6-
Rosenbrock23Cache,
7-
Rosenbrock32Cache}}
8-
dense ? "specialized 2nd order \"free\" stiffness-aware interpolation" :
9-
"1st order linear"
10-
end
11-
function DiffEqBase.interp_summary(::Type{cacheType},
12-
dense::Bool) where {
13-
cacheType <:
14-
Union{RosenbrockCombinedConstantCache, Rodas23WConstantCache, Rodas3PConstantCache,
15-
RosenbrockCache, Rodas23WCache, Rodas3PCache}}
16-
dense ? "specialized 3rd order \"free\" stiffness-aware interpolation" :
17-
"1st order linear"
18-
end
19-
201
function DiffEqBase.interp_summary(::Type{cacheType},
212
dense::Bool) where {
223
cacheType <:
234
Union{RosenbrockCombinedConstantCache,
245
RosenbrockCache}}
25-
dense ? "specialized 4rd order \"free\" stiffness-aware interpolation" :
6+
dense ? "specialized $(cache.interp_order) order \"free\" stiffness-aware interpolation" :
267
"1st order linear"
278
end

0 commit comments

Comments
 (0)