Prechádzať zdrojové kódy

that was not enough

tarfeef101 6 rokov pred
rodič
commit
04db510372
1 zmenil súbory, kde vykonal 2 pridanie a 0 odobranie
  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