Skip to content

Commit

Permalink
fixup - better error estimate
Browse files Browse the repository at this point in the history
  • Loading branch information
wthrowe committed Feb 14, 2024
1 parent edfe4a3 commit ffbc717
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Time/TimeSteppers/Rk3Pareschi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const RungeKutta::ButcherTableau& Rk3Pareschi::butcher_tableau() const {
//
// Not given in the reference. Any set of coefficients of the form
// (0, 0, x, x, 1 - 2 x) works.
{0.0, 0.0, 0.0, 0.0, 1.0},
{0.0, 0.0, 0.25, 0.25, 0.5},
// Dense output coefficient polynomials
{{},
{0.0, 1.0, -1.0},
Expand Down

0 comments on commit ffbc717

Please sign in to comment.