Skip to content

Commit

Permalink
Update run_DRC.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasc-ubc authored Jul 17, 2024
1 parent 40e58cc commit 8c179c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run_DRC.py
Original file line number Diff line number Diff line change
Expand Up @@ -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) )
Expand Down

0 comments on commit 8c179c3

Please sign in to comment.