From d1659fbdb70cd76b612d39f614e1ac56e60796c8 Mon Sep 17 00:00:00 2001 From: Guilhem Gamard <guilhem.gamard@normale.fr> Date: Mon, 10 Feb 2020 14:49:01 +0100 Subject: [PATCH] Removed debug-print statement --- simra.py | 1 - 1 file changed, 1 deletion(-) diff --git a/simra.py b/simra.py index 8ae434a..de04d1a 100755 --- a/simra.py +++ b/simra.py @@ -354,7 +354,6 @@ def and_not(dep_lists, init_vals, update_mode): """ nodes = [] for (dep_list, init_val, i) in zip(dep_lists[1:], init_vals[1:], count(1)): - print("{} {} {}".format(dep_list, init_val, i)) update_func = and_not_update_func(dep_list) deps = [abs(d) for d in dep_list] node = Node(i, update_func, deps, init_val) -- GitLab