Skip to content

Commit

Permalink
Fix for RK sweeper - changed nodes in BackwardEuler class
Browse files Browse the repository at this point in the history
  • Loading branch information
lisawim committed Feb 15, 2024
1 parent 7c37ed5 commit 76041f5
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 76041f5

Please sign in to comment.