Remove print statement

This commit is contained in:
Matt Guthaus 2018-07-25 15:51:48 -07:00
parent b7525a14c2
commit dd7069dd98
1 changed files with 2 additions and 2 deletions

View File

@ -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: