From 8c179c33becffde4d2ce6061fc14e5a763f82c25 Mon Sep 17 00:00:00 2001 From: Lukas Chrostowski Date: Tue, 16 Jul 2024 22:23:56 -0700 Subject: [PATCH] Update run_DRC.py --- run_DRC.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run_DRC.py b/run_DRC.py index 9ac27a8..81198c3 100644 --- a/run_DRC.py +++ b/run_DRC.py @@ -44,8 +44,8 @@ try: # Make sure layout extent fits within the allocated area. - cell_Width = 470000 - cell_Height = 440000 + cell_Width = 440000 + cell_Height = 470000 bbox = top_cell.bbox() if bbox.width() > cell_Width or bbox.height() > cell_Height: print('Error: Cell bounding box / extent (%s, %s) is larger than the maximum size of %s X %s microns' % (bbox.width()/1000, bbox.height()/1000, cell_Width/1000, cell_Height/1000) )