mirror of https://github.com/VLSIDA/OpenRAM.git
Remove print statement
This commit is contained in:
parent
b7525a14c2
commit
dd7069dd98
|
|
@ -767,7 +767,7 @@ class layout(lef.lef):
|
||||||
|
|
||||||
# list of routes to do
|
# list of routes to do
|
||||||
while vcg:
|
while vcg:
|
||||||
print(vcg)
|
#print(vcg)
|
||||||
# get a route from conflict graph with empty fanout set
|
# get a route from conflict graph with empty fanout set
|
||||||
route_pin=None
|
route_pin=None
|
||||||
for route_pin,conflicts in vcg.items():
|
for route_pin,conflicts in vcg.items():
|
||||||
|
|
@ -779,7 +779,7 @@ class layout(lef.lef):
|
||||||
for pin_connections in route_map:
|
for pin_connections in route_map:
|
||||||
if route_pin in pin_connections:
|
if route_pin in pin_connections:
|
||||||
break
|
break
|
||||||
print("Routing:",route_pin,pin_connections)
|
#print("Routing:",route_pin,pin_connections)
|
||||||
|
|
||||||
# Remove the other pins from the conflict graph too
|
# Remove the other pins from the conflict graph too
|
||||||
for other_pin in pin_connections:
|
for other_pin in pin_connections:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue