Browse Source

that was not enough

tarfeef101 6 năm trước cách đây
mục cha
commit
04db510372
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  1. 2 0
      a3/router.py

+ 2 - 0
a3/router.py

@@ -153,8 +153,10 @@ class graph:
         unvisited = [1] * 5
         
         while(sum(unvisited)):
+            print("Big iteration")
             # iterate on routers adjacent to curnode
             for i in range(0, 5):
+                print("little iteration")
                 # don't check curnode
                 if (i == curnode):
                     continue