@@ -673,10 +673,10 @@ year={1999},
673673publisher={Elsevier}
674674}
675675
676- RadauIIA7 : Fully-Implicit Runge-Kutta Method
676+ RadauII97 : Fully-Implicit Runge-Kutta Method
677677An A-B-L stable fully implicit Runge-Kutta method with internal tableau complex basis transform for efficiency.
678678"""
679- struct RadauIIA7 {CS, AD, F, P, FDT, ST, CJ, Tol, C1, C2, StepLimiter} < :
679+ struct RadauIIA9 {CS, AD, F, P, FDT, ST, CJ, Tol, C1, C2, StepLimiter} < :
680680 OrdinaryDiffEqNewtonAdaptiveAlgorithm{CS, AD, FDT, ST, CJ}
681681 linsolve:: F
682682 precs:: P
@@ -690,15 +690,15 @@ struct RadauIIA7{CS, AD, F, P, FDT, ST, CJ, Tol, C1, C2, StepLimiter} <:
690690 step_limiter!:: StepLimiter
691691end
692692
693- function RadauIIA7 (; chunk_size = Val {0} (), autodiff = Val {true} (),
693+ function RadauIIA9 (; chunk_size = Val {0} (), autodiff = Val {true} (),
694694 standardtag = Val {true} (), concrete_jac = nothing ,
695695 diff_type = Val{:forward },
696696 linsolve = nothing , precs = DEFAULT_PRECS,
697697 extrapolant = :dense , fast_convergence_cutoff = 1 // 5 ,
698698 new_W_γdt_cutoff = 1 // 5 ,
699699 controller = :Predictive , κ = nothing , maxiters = 10 , smooth_est = true ,
700700 step_limiter! = trivial_limiter!)
701- RadauIIA7 {_unwrap_val (chunk_size), _unwrap_val (autodiff), typeof (linsolve),
701+ RadauIIA9 {_unwrap_val (chunk_size), _unwrap_val (autodiff), typeof (linsolve),
702702 typeof (precs), diff_type, _unwrap_val (standardtag), _unwrap_val (concrete_jac),
703703 typeof (κ), typeof (fast_convergence_cutoff),
704704 typeof (new_W_γdt_cutoff), typeof (step_limiter!)}(linsolve,
@@ -712,7 +712,7 @@ function RadauIIA7(; chunk_size = Val{0}(), autodiff = Val{true}(),
712712 controller,
713713 step_limiter!)
714714end
715- TruncatedStacktraces. @truncate_stacktrace RadauIIA7
715+ TruncatedStacktraces. @truncate_stacktrace RadauIIA9
716716
717717# ###############################################################################
718718
0 commit comments