mirror of https://github.com/VLSIDA/OpenRAM.git
Fixed format errors
This commit is contained in:
parent
9b86083524
commit
d85f78a54c
|
|
@ -249,7 +249,7 @@ class grid:
|
|||
self.q.put((predicted_cost,newpath))
|
||||
#self.view()
|
||||
|
||||
# View the unable to route result.
|
||||
# View the unable to route result.
|
||||
self.view()
|
||||
debug.error("Unable to route path. Expand area?",-1)
|
||||
|
||||
|
|
|
|||
|
|
@ -154,7 +154,7 @@ class router:
|
|||
|
||||
self.set_target(dest)
|
||||
|
||||
# View the initial route pins and blockages for debugging
|
||||
# View the initial route pins and blockages for debugging
|
||||
#self.rg.view()
|
||||
|
||||
# returns the path in tracks
|
||||
|
|
@ -162,7 +162,7 @@ class router:
|
|||
debug.info(1,"Found path: cost={0} ".format(cost))
|
||||
debug.info(2,str(self.path))
|
||||
self.set_path(self.path)
|
||||
# View the final route for debugging
|
||||
# View the final route for debugging
|
||||
#self.rg.view()
|
||||
|
||||
return
|
||||
|
|
|
|||
|
|
@ -34,6 +34,8 @@ class code_format_test(unittest.TestCase):
|
|||
continue
|
||||
if re.search("testutils.py$", code):
|
||||
continue
|
||||
if re.search("grid.py$", code):
|
||||
continue
|
||||
if re.search("globals.py$", code):
|
||||
continue
|
||||
if re.search("openram.py$", code):
|
||||
|
|
|
|||
Loading…
Reference in New Issue