Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielDoehring committed Dec 19, 2024
1 parent ddf79be commit 1001f65
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function compute_PairedExplicitRK4_butcher_tableau(num_stages, tspan,
if num_stages > 5
a_unknown = copy(monomial_coeffs)
for i in 5:(num_stages - 2)
a_unknown_1[i - 3] /= monomial_coeffs[i - 4]
a_unknown[i - 3] /= monomial_coeffs[i - 4]
end
reverse!(a_unknown)

Expand Down

0 comments on commit 1001f65

Please sign in to comment.