Skip to content

Commit bdfa5c9

Browse files
committed
Removed some old comments
1 parent 6e0dd72 commit bdfa5c9

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

pySDC/core/controller.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,6 @@ def __init__(self, controller_params, description, n_steps, useMPI=None):
358358
n_steps (int): Number of parallel steps
359359
alpha (float): alpha parameter for ParaDiag
360360
"""
361-
# TODO: where should I put alpha? When I want to adapt it, maybe it shouldn't be in the controller?
362361
from pySDC.implementations.sweeper_classes.ParaDiagSweepers import QDiagonalization
363362

364363
if QDiagonalization in description['sweeper_class'].__mro__:

pySDC/implementations/sweeper_classes/ParaDiagSweepers.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ def update_nodes(self):
107107
x1 = self.mat_vec(self.S_inv, [self.level.u[0] for _ in range(M)])
108108
x2 = []
109109
for m in range(M):
110-
# TODO: need to put averaged x1 in u0 here for nonlinear problems
111110
u0 = L.u_avg[m] if L.u_avg[m] is not None else x1[m]
112111
x2.append(P.solve_system(x1[m], self.w[m] * L.dt, u0=u0, t=L.time + L.dt * self.coll.nodes[m]))
113112
z = self.mat_vec(self.S, x2)

0 commit comments

Comments
 (0)