From 5af22b79e2cbea5df4faf370b760d825ee103821 Mon Sep 17 00:00:00 2001 From: Matthew Guthaus Date: Fri, 6 Dec 2019 02:17:58 +0000 Subject: [PATCH] Only add boundary for if there's a DRC stdc layer --- compiler/base/hierarchy_layout.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/compiler/base/hierarchy_layout.py b/compiler/base/hierarchy_layout.py index 7a4fc4c7..494ab4ca 100644 --- a/compiler/base/hierarchy_layout.py +++ b/compiler/base/hierarchy_layout.py @@ -514,12 +514,6 @@ class layout(): # If there is a boundary layer, and we didn't create one, add one. if "stdc" in techlayer.keys(): boundary_layer = "stdc" - elif "boundary" in techlayer.keys(): - boundary_layer = "boundary" - else: - boundary_layer = None - - if boundary_layer: boundary = [self.find_lowest_coords(), self.find_highest_coords()] height = boundary[1][1] - boundary[0][1] width = boundary[1][0] - boundary[0][0]