Skip to content

Commit

Permalink
Removed print line
Browse files Browse the repository at this point in the history
  • Loading branch information
lisawim committed Oct 27, 2023
1 parent 2f359f3 commit 4136575
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pySDC/implementations/problem_classes/AllenCahn_1D_FD.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def solve_system(self, rhs, factor, u0, t):
raise ProblemError('Newton got nan after %i iterations, aborting...' % n)
elif np.isnan(res):
self.logger.warning('Newton got nan after %i iterations...' % n)
print(f'{type(self).__name__}')

if n == self.newton_maxiter:
self.logger.warning('Newton did not converge after %i iterations, error is %s' % (n, res))

Expand Down

0 comments on commit 4136575

Please sign in to comment.