From 0518f267a3bf32f7481fcb0faaf2348cf8cda14f Mon Sep 17 00:00:00 2001 From: Thomas Baumann <39156931+brownbaerchen@users.noreply.github.com> Date: Thu, 21 Nov 2024 16:29:25 +0100 Subject: [PATCH] Minor cleanup (#507) --- pySDC/implementations/sweeper_classes/generic_implicit_MPI.py | 1 - pySDC/implementations/sweeper_classes/imex_1st_order_MPI.py | 1 - 2 files changed, 2 deletions(-) diff --git a/pySDC/implementations/sweeper_classes/generic_implicit_MPI.py b/pySDC/implementations/sweeper_classes/generic_implicit_MPI.py index 802dc13731..1ca6d6e894 100644 --- a/pySDC/implementations/sweeper_classes/generic_implicit_MPI.py +++ b/pySDC/implementations/sweeper_classes/generic_implicit_MPI.py @@ -247,7 +247,6 @@ def compute_end_point(self): L = self.level P = L.prob - L.uend = P.dtype_u(P.init, val=0.0) # check if Mth node is equal to right point and do_coll_update is false, perform a simple copy if self.coll.right_is_node and not self.params.do_coll_update: diff --git a/pySDC/implementations/sweeper_classes/imex_1st_order_MPI.py b/pySDC/implementations/sweeper_classes/imex_1st_order_MPI.py index e704daaede..b32d9477a0 100644 --- a/pySDC/implementations/sweeper_classes/imex_1st_order_MPI.py +++ b/pySDC/implementations/sweeper_classes/imex_1st_order_MPI.py @@ -92,7 +92,6 @@ def compute_end_point(self): L = self.level P = L.prob - L.uend = P.dtype_u(P.init, val=0.0) # check if Mth node is equal to right point and do_coll_update is false, perform a simple copy if self.coll.right_is_node and not self.params.do_coll_update: