From 32c227af39bdce623133818dc17f2cb15b974b22 Mon Sep 17 00:00:00 2001 From: Alexandre Magueresse Date: Mon, 15 Apr 2024 16:32:38 +1000 Subject: [PATCH] Fixed constructor of RungeKutta with only one solver, removed symbol FE --- src/ODEs/ODESolvers.jl | 2 +- src/ODEs/ODESolvers/TableausEX.jl | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ODEs/ODESolvers.jl b/src/ODEs/ODESolvers.jl index c17b9d52c..b00fa297b 100644 --- a/src/ODEs/ODESolvers.jl +++ b/src/ODEs/ODESolvers.jl @@ -202,5 +202,5 @@ function RungeKutta( end function RungeKutta(sysslvr_nl::NonlinearSolver, dt::Real, tableau) - RungeKutta(sysslvr_nl, sysslvr_nl, dt, name) + RungeKutta(sysslvr_nl, sysslvr_nl, dt, tableau) end diff --git a/src/ODEs/ODESolvers/TableausEX.jl b/src/ODEs/ODESolvers/TableausEX.jl index b21376580..4dd51b583 100644 --- a/src/ODEs/ODESolvers/TableausEX.jl +++ b/src/ODEs/ODESolvers/TableausEX.jl @@ -10,7 +10,6 @@ end """ EXRK_Euler_1_1 - FE """ struct EXRK_Euler_1_1 <: TableauName end