Browse Source

title wasn't working out

tarfeef101 6 years ago
parent
commit
749679d3eb
2 changed files with 1 additions and 4 deletions
  1. BIN
      a2/hill_climbing.pdf
  2. 1 4
      a2/tsp_local.py

BIN
a2/hill_climbing.pdf


+ 1 - 4
a2/tsp_local.py

@@ -330,24 +330,21 @@ def main():
             good_sol_counts[i] = tempgood / 10.0
         
         figure, axes = plt.subplots(3, 1, True)
-        figure.suptitle("Hill Climbing Aggegated\n")
+        figure.suptitle("Hill Climbing Aggegated (Averages)")
         
         axes[0].plot(range(14, 17), solution_steps, color = 'b')
         axes[0].set_xlabel("Problem Instances w/ x cities")
         axes[0].set_ylabel("Steps Used", color = 'b')
-        axes[0].title.set_text('Avg Steps of Algorithm')
         axes[0].set_xticks([14, 15, 16])
         
         axes[1].plot(range(14, 17), solution_scores, color = 'b')
         axes[1].set_xlabel("Problem Instances w/ x cities")
         axes[1].set_ylabel("Solution Quality", color = 'b')
-        axes[1].title.set_text('Avg Relative Quality of Solutions')
         axes[1].set_xticks([14, 15, 16])
         
         axes[2].plot(range(14, 17), good_sol_counts, color = 'b')
         axes[2].set_xlabel("Problem Instances w/ x cities")
         axes[2].set_ylabel("% of runs <= NEOS", color = 'b')
-        axes[2].title.set_text('Avg % of Algorithms Equal or Better than NEOS')
         axes[2].set_xticks([14, 15, 16])
             
         plt.tight_layout()