Skip to content

Commit

Permalink
Fix for RK sweeper - changed nodes in BackwardEuler class (#403)
Browse files Browse the repository at this point in the history
  • Loading branch information
lisawim authored Feb 27, 2024
1 parent b059c62 commit 1c4733f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pySDC/implementations/sweeper_classes/Runge_Kutta.py
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ class BackwardEuler(RungeKutta):
A-stable first order method.
"""

nodes = np.array([0.0])
nodes = np.array([1.0])
weights = np.array([1.0])
matrix = np.array(
[
Expand Down

0 comments on commit 1c4733f

Please sign in to comment.