@@ -274,7 +274,7 @@ function alg_cache(alg::RadauIIA5, u, rate_prototype, ::Type{uEltypeNoUnits},
274274 Convergence, alg. step_limiter!)
275275end
276276
277- mutable struct RadauIIA7ConstantCache {F, Tab, Tol, Dt, U, JType} < :
277+ mutable struct RadauIIA9ConstantCache {F, Tab, Tol, Dt, U, JType} < :
278278 OrdinaryDiffEqConstantCache
279279 uf:: F
280280 tab:: Tab
@@ -291,22 +291,22 @@ mutable struct RadauIIA7ConstantCache{F, Tab, Tol, Dt, U, JType} <:
291291 J:: JType
292292end
293293
294- function alg_cache (alg:: RadauIIA7 , u, rate_prototype, :: Type{uEltypeNoUnits} ,
294+ function alg_cache (alg:: RadauIIA9 , u, rate_prototype, :: Type{uEltypeNoUnits} ,
295295 :: Type{uBottomEltypeNoUnits} ,
296296 :: Type{tTypeNoUnits} , uprev, uprev2, f, t, dt, reltol, p, calck,
297297 :: Val{false} ) where {uEltypeNoUnits, uBottomEltypeNoUnits, tTypeNoUnits}
298298 uf = UDerivativeWrapper (f, t, p)
299299 uToltype = constvalue (uBottomEltypeNoUnits)
300- tab = RadauIIA7Tableau (uToltype, constvalue (tTypeNoUnits))
300+ tab = RadauIIA9Tableau (uToltype, constvalue (tTypeNoUnits))
301301
302302 κ = alg. κ != = nothing ? convert (uToltype, alg. κ) : convert (uToltype, 1 // 100 )
303303 J = false .* _vec (rate_prototype) .* _vec (rate_prototype)'
304304
305- RadauIIA7ConstantCache (uf, tab, κ, one (uToltype), 10000 , u, u, u, u, dt, dt,
305+ RadauIIA9ConstantCache (uf, tab, κ, one (uToltype), 10000 , u, u, u, u, dt, dt,
306306 Convergence, J)
307307end
308308
309- mutable struct RadauIIA7Cache {uType, cuType, uNoUnitsType, rateType, JType, W1Type, W2Type,
309+ mutable struct RadauIIA9Cache {uType, cuType, uNoUnitsType, rateType, JType, W1Type, W2Type,
310310 UF, JC, F1, F2, Tab, Tol, Dt, rTol, aTol, StepLimiter} < :
311311 OrdinaryDiffEqMutableCache
312312 u:: uType
@@ -370,15 +370,15 @@ mutable struct RadauIIA7Cache{uType, cuType, uNoUnitsType, rateType, JType, W1Ty
370370 status:: NLStatus
371371 step_limiter!:: StepLimiter
372372end
373- TruncatedStacktraces. @truncate_stacktrace RadauIIA7Cache 1
373+ TruncatedStacktraces. @truncate_stacktrace RadauIIA9Cache 1
374374
375- function alg_cache (alg:: RadauIIA7 , u, rate_prototype, :: Type{uEltypeNoUnits} ,
375+ function alg_cache (alg:: RadauIIA9 , u, rate_prototype, :: Type{uEltypeNoUnits} ,
376376 :: Type{uBottomEltypeNoUnits} ,
377377 :: Type{tTypeNoUnits} , uprev, uprev2, f, t, dt, reltol, p, calck,
378378 :: Val{true} ) where {uEltypeNoUnits, uBottomEltypeNoUnits, tTypeNoUnits}
379379 uf = UJacobianWrapper (f, t, p)
380380 uToltype = constvalue (uBottomEltypeNoUnits)
381- tab = RadauIIA7Tableau (uToltype, constvalue (tTypeNoUnits))
381+ tab = RadauIIA9Tableau (uToltype, constvalue (tTypeNoUnits))
382382
383383 κ = alg. κ != = nothing ? convert (uToltype, alg. κ) : convert (uToltype, 1 // 100 )
384384
@@ -459,7 +459,7 @@ function alg_cache(alg::RadauIIA7, u, rate_prototype, ::Type{uEltypeNoUnits},
459459 rtol = reltol isa Number ? reltol : zero (reltol)
460460 atol = reltol isa Number ? reltol : zero (reltol)
461461
462- RadauIIA7Cache (u, uprev,
462+ RadauIIA9Cache (u, uprev,
463463 z1, z2, z3, z4, z5, w1, w2, w3, w4, w5,
464464 dw1, ubuff, dw23, dw45, cubuff1, cubuff2, cont1, cont2, cont3, cont4,
465465 du1, fsalfirst, k, k2, k3, k4, k5, fw1, fw2, fw3, fw4, fw5,
0 commit comments