Skip to content

Commit

Permalink
Removed zero matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
lisawim committed Oct 27, 2023
1 parent 90fdf2d commit 1e3930b
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions pySDC/implementations/problem_classes/AllenCahn_1D_FD.py
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,6 @@ def __init__(
stop_at_nan=True,
):
super().__init__(nvars, dw, eps, newton_maxiter, newton_tol, interval, radius, stop_at_nan)
self.A -= sp.eye(self.nvars) * 0.0 / self.eps**2

def solve_system(self, rhs, factor, u0, t):
r"""
Expand Down Expand Up @@ -805,7 +804,6 @@ def __init__(
stop_at_nan=True,
):
super().__init__(nvars, dw, eps, newton_maxiter, newton_tol, interval, radius, stop_at_nan)
self.A -= sp.eye(nvars) * 0.0 / self.eps**2

def solve_system_1(self, rhs, factor, u0, t):
r"""
Expand Down

0 comments on commit 1e3930b

Please sign in to comment.