瀏覽代碼

forgot to use the tabu algo while generating it's graphs lol

tarfeef101 6 年之前
父節點
當前提交
dbfcb41782
共有 2 個文件被更改,包括 4 次插入2 次删除
  1. 二進制
      a2/hill_climbing_tabu.pdf
  2. 4 2
      a2/tsp_local.py

二進制
a2/hill_climbing_tabu.pdf


+ 4 - 2
a2/tsp_local.py

@@ -133,9 +133,11 @@ def tenzing_norgay(cities):
     curpath = copy.deepcopy(cities)
     tabu = {get_hashable(cities)}
     laterals = 0
+    steps = 0
     
     # keep trying things til we can no longer try things
     while(1):
+        steps += 1
         child = bester_child(curpath, curcost, tabu)
         if (child[1] < curcost):
             curcost = child[1]
@@ -150,7 +152,7 @@ def tenzing_norgay(cities):
             continue
         break
         
-    return(curpath, curcost)
+    return(curpath, curcost, steps)
 
 
 # returns the hill climbing solution w/ x random restarts for a given input
@@ -379,7 +381,7 @@ def tenzing_norgay_graph():
             # run problem 100 times
             for k in range(0, 100):
                 # path, cost, steps returned
-                result = solver(filepath, 1)
+                result = solver(filepath, 2)
                 prob_steps += result[2]
                 prob_scores += (result[1] / neos[i][j - 1])
                 if (result[1] <= neos[i][j- 1]):