@@ -273,7 +273,7 @@ function alg_cache(alg::RadauIIA5, u, rate_prototype, ::Type{uEltypeNoUnits},
273273 Convergence, alg. step_limiter!)
274274end
275275
276- mutable struct RadauIIA7ConstantCache {F, Tab, Tol, Dt, U, JType} < :
276+ mutable struct RadauIIA9ConstantCache {F, Tab, Tol, Dt, U, JType} < :
277277 OrdinaryDiffEqConstantCache
278278 uf:: F
279279 tab:: Tab
@@ -290,22 +290,22 @@ mutable struct RadauIIA7ConstantCache{F, Tab, Tol, Dt, U, JType} <:
290290 J:: JType
291291end
292292
293- function alg_cache (alg:: RadauIIA7 , u, rate_prototype, :: Type{uEltypeNoUnits} ,
293+ function alg_cache (alg:: RadauIIA9 , u, rate_prototype, :: Type{uEltypeNoUnits} ,
294294 :: Type{uBottomEltypeNoUnits} ,
295295 :: Type{tTypeNoUnits} , uprev, uprev2, f, t, dt, reltol, p, calck,
296296 :: Val{false} ) where {uEltypeNoUnits, uBottomEltypeNoUnits, tTypeNoUnits}
297297 uf = UDerivativeWrapper (f, t, p)
298298 uToltype = constvalue (uBottomEltypeNoUnits)
299- tab = RadauIIA7Tableau (uToltype, constvalue (tTypeNoUnits))
299+ tab = RadauIIA9Tableau (uToltype, constvalue (tTypeNoUnits))
300300
301301 κ = alg. κ != = nothing ? convert (uToltype, alg. κ) : convert (uToltype, 1 // 100 )
302302 J = false .* _vec (rate_prototype) .* _vec (rate_prototype)'
303303
304- RadauIIA7ConstantCache (uf, tab, κ, one (uToltype), 10000 , u, u, u, u, dt, dt,
304+ RadauIIA9ConstantCache (uf, tab, κ, one (uToltype), 10000 , u, u, u, u, dt, dt,
305305 Convergence, J)
306306end
307307
308- mutable struct RadauIIA7Cache {uType, cuType, uNoUnitsType, rateType, JType, W1Type, W2Type,
308+ mutable struct RadauIIA9Cache {uType, cuType, uNoUnitsType, rateType, JType, W1Type, W2Type,
309309 UF, JC, F1, F2, Tab, Tol, Dt, rTol, aTol, StepLimiter} < :
310310 OrdinaryDiffEqMutableCache
311311 u:: uType
@@ -370,13 +370,13 @@ mutable struct RadauIIA7Cache{uType, cuType, uNoUnitsType, rateType, JType, W1Ty
370370 step_limiter!:: StepLimiter
371371end
372372
373- function alg_cache (alg:: RadauIIA7 , u, rate_prototype, :: Type{uEltypeNoUnits} ,
373+ function alg_cache (alg:: RadauIIA9 , u, rate_prototype, :: Type{uEltypeNoUnits} ,
374374 :: Type{uBottomEltypeNoUnits} ,
375375 :: Type{tTypeNoUnits} , uprev, uprev2, f, t, dt, reltol, p, calck,
376376 :: Val{true} ) where {uEltypeNoUnits, uBottomEltypeNoUnits, tTypeNoUnits}
377377 uf = UJacobianWrapper (f, t, p)
378378 uToltype = constvalue (uBottomEltypeNoUnits)
379- tab = RadauIIA7Tableau (uToltype, constvalue (tTypeNoUnits))
379+ tab = RadauIIA9Tableau (uToltype, constvalue (tTypeNoUnits))
380380
381381 κ = alg. κ != = nothing ? convert (uToltype, alg. κ) : convert (uToltype, 1 // 100 )
382382
@@ -457,7 +457,7 @@ function alg_cache(alg::RadauIIA7, u, rate_prototype, ::Type{uEltypeNoUnits},
457457 rtol = reltol isa Number ? reltol : zero (reltol)
458458 atol = reltol isa Number ? reltol : zero (reltol)
459459
460- RadauIIA7Cache (u, uprev,
460+ RadauIIA9Cache (u, uprev,
461461 z1, z2, z3, z4, z5, w1, w2, w3, w4, w5,
462462 dw1, ubuff, dw23, dw45, cubuff1, cubuff2, cont1, cont2, cont3, cont4,
463463 du1, fsalfirst, k, k2, k3, k4, k5, fw1, fw2, fw3, fw4, fw5,
0 commit comments