mirror of https://github.com/VLSIDA/OpenRAM.git
Add empty minarea function
This commit is contained in:
parent
262782cba0
commit
306740f0f3
|
|
@ -102,6 +102,13 @@ class pin_layout:
|
||||||
|
|
||||||
self.rect = [vector(min_x, min_y), vector(max_x, max_y)]
|
self.rect = [vector(min_x, min_y), vector(max_x, max_y)]
|
||||||
|
|
||||||
|
def fix_minarea(self):
|
||||||
|
"""
|
||||||
|
Try to fix minimum area rule.
|
||||||
|
"""
|
||||||
|
min_area = drc("{}_minarea".format(self.layer))
|
||||||
|
pass
|
||||||
|
|
||||||
def inflate(self, spacing=None):
|
def inflate(self, spacing=None):
|
||||||
"""
|
"""
|
||||||
Inflate the rectangle by the spacing (or other rule)
|
Inflate the rectangle by the spacing (or other rule)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue