From bbffec863bd61ffe10148e6e877c35d19251ac4b Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Mon, 29 Oct 2018 10:59:22 -0700 Subject: [PATCH] Abandon connectors for now and opt for all enclosures --- compiler/router/pin_group.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/compiler/router/pin_group.py b/compiler/router/pin_group.py index 032c4fa4..f14abecb 100644 --- a/compiler/router/pin_group.py +++ b/compiler/router/pin_group.py @@ -260,12 +260,12 @@ class pin_group: smallest = self.find_smallest_overlapping(self.pins[0],enclosure_list) if smallest: self.enclosures=[smallest] - else: - connector=self.find_smallest_connector(enclosure_list) - if connector: - self.enclosures=[connector] - else: - debug.error("Unable to enclose pin {}".format(self.pins),-1) + # else: + # connector=self.find_smallest_connector(enclosure_list) + # if connector: + # self.enclosures=[connector] + # else: + # debug.error("Unable to enclose pin {}".format(self.pins),-1) else: # Multiple pins is hard, so just use all of the enclosure shapes! # FIXME: Find the minimum set of enclosures to reduce number of shapes.