Skip to content

Commit

Permalink
Minor fix in Runge-Kutta integrators.
Browse files Browse the repository at this point in the history
  • Loading branch information
michakraus committed Dec 12, 2024
1 parent b59fcd4 commit 53b7444
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/integrators/rk/abstract.jl
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ GeometricBase.tableau(int::GeometricIntegrator{<:EquationProblem, <:RKMethod}) =
initmethod(method::RKMethod) = RK(method)
initmethod(method::PRKMethod) = PRK(method)

GeometricIntegrator(problem::Union{PODEProblem,HODEProblem}, method::RKMethod, args...; kwargs...) = GeometricIntegrator(problem, PRK(method), args...; kwargs...)
GeometricIntegrator(problem::AbstractProblemPODE, method::RKMethod, args...; kwargs...) = GeometricIntegrator(problem, PRK(method), args...; kwargs...)

0 comments on commit 53b7444

Please sign in to comment.