From 06d2c31496572ae70d393256bb85107d30579d5f Mon Sep 17 00:00:00 2001 From: Shreyas-Ekanathan <142109039+Shreyas-Ekanathan@users.noreply.github.com> Date: Mon, 22 Apr 2024 21:08:05 -0400 Subject: [PATCH] Update algorithms.jl --- src/algorithms.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/algorithms.jl b/src/algorithms.jl index c530e25ffc..2c44f2d2ac 100644 --- a/src/algorithms.jl +++ b/src/algorithms.jl @@ -1209,9 +1209,8 @@ volume={400}, pages={113753} } """ -struct ERKN7 <: OrdinaryDiffEqAdaptivePartitionedAlgorithm end -struct RKN4 <: OrdinaryDiffEqAlgorithm end +struct ERKN7 <: OrdinaryDiffEqAdaptivePartitionedAlgorithm end """ 3 stage fourth order Runge-Kutta Nystrom method to solve second order linear inhomogenous IVPs. @@ -1231,6 +1230,7 @@ year = {2024}, } """ +struct RKN4 <: OrdinaryDiffEqAlgorithm end ################################################################################