From 872e81e5536fbfec9ea6bc96fd2cdd5206788776 Mon Sep 17 00:00:00 2001 From: lisawim Date: Thu, 7 Mar 2024 09:39:54 +0100 Subject: [PATCH] Use msg about convergence info in Newton in SE --- pySDC/projects/PinTSimE/switch_estimator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pySDC/projects/PinTSimE/switch_estimator.py b/pySDC/projects/PinTSimE/switch_estimator.py index ba7c79662b..03835712ff 100644 --- a/pySDC/projects/PinTSimE/switch_estimator.py +++ b/pySDC/projects/PinTSimE/switch_estimator.py @@ -400,7 +400,7 @@ def newton(x0, p, fprime, newton_tol, newton_maxiter): msg = f'Newton did not converge after {n} iterations, error is {res}' else: msg = f'Newton did converge after {n} iterations, error for root {x0} is {res}' - # print(msg) + print(msg) root = x0 return root