Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix docstring of BS3 #2069

Merged
merged 2 commits into from
Nov 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/algorithms/explicit_rk.jl
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,9 @@ function OwrenZen5(stage_limiter!, step_limiter! = trivial_limiter!)
OwrenZen5(stage_limiter!, step_limiter!, False())
end

@doc explicit_rk_docstring("Owren-Zennaro optimized interpolation 5/4 method (free 5th order interpolant).",
"OwrenZen5",
@doc explicit_rk_docstring("A third-order, four-stage explicit FSAL Runge-Kutta method with embedded error
estimator of Bogacki and Shampine.",
"BS3",
references = "@article{bogacki19893,
title={A 3 (2) pair of Runge-Kutta formulas},
author={Bogacki, Przemyslaw and Shampine, Lawrence F},
Expand Down
Loading