From 08365f312a9baea3b1680a9fdea36a73787929ba Mon Sep 17 00:00:00 2001 From: Robert K <robertk@posteo.org> Date: Fri, 19 Feb 2021 19:41:12 +0100 Subject: [PATCH] [cleanup][rk.py] remove debug output. --- python/dune/femdg/rk.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/dune/femdg/rk.py b/python/dune/femdg/rk.py index 9a31fe85..f350b8c1 100644 --- a/python/dune/femdg/rk.py +++ b/python/dune/femdg/rk.py @@ -409,7 +409,6 @@ def ssp3(stages,explicit=True): if explicit: return lambda op,cfl=None: ExplSSP3(stages,op,cfl) else: - print("Create implssp3") return lambda op,cfl=None: ImplSSP3(stages,op,cfl) class ExplSSP4_10: -- GitLab