From 4ebb8a26c4af563579a8d36e4ba5f0c0cf2b445f Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Tue, 13 Nov 2018 17:43:08 -0800 Subject: [PATCH] Disable debug statements. --- compiler/router/router.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/router/router.py b/compiler/router/router.py index db0366b2..245b5878 100644 --- a/compiler/router/router.py +++ b/compiler/router/router.py @@ -653,7 +653,7 @@ class router(router_tech): debug.info(2,"Analyzing pin groups for {}.".format(pin_name)) pin_set = self.pins[pin_name] - local_debug = True + local_debug = False # Put each pin in an equivalence class of it's own equiv_classes = [set([x]) for x in pin_set]