|
@@ -515,8 +515,8 @@ def reinhold_messner_graph():
|
|
|
for i in range(0, 3):
|
|
|
for j in range(0, 2):
|
|
|
axes[i][j].plot(range(1, 16), solution_times[i][j], color = 'b')
|
|
|
- axes[i][j].set_xlabel("Problem Instance w/ " + str(i + 14) + " cities")
|
|
|
- axes[i][j].set_ylabel("Time Taken", color = 'b')
|
|
|
+ axes[i][j].set_xlabel("Problem Instance " + str(j + 1) + " w/ " + str(i + 14) + " cities")
|
|
|
+ axes[i][j].set_ylabel("Time Taken (s)", color = 'b')
|
|
|
axis_twin = axes[i][j].twinx()
|
|
|
axis_twin.plot(range(1, 16), solution_scores[i][j], color = 'r')
|
|
|
axis_twin.set_ylabel("Solution Quality", color = 'r')
|
|
@@ -577,9 +577,9 @@ def beck_weathers_graph():
|
|
|
for i in range(0, 3):
|
|
|
for j in range(0, 2):
|
|
|
axes[i][j].plot(range(1, 4), solution_times[i][j], color = 'b')
|
|
|
- axes[i][j].set_title("Problem Instance w/ " + str(i + 14) + " cities")
|
|
|
- axes[i][j].set_xlabel("Annealing Schedule " + str(j + 1))
|
|
|
- axes[i][j].set_ylabel("Time Taken", color = 'b')
|
|
|
+ axes[i][j].set_title("Problem Instance " + str(j + 1) + " w/ " + str(i + 14) + " cities")
|
|
|
+ axes[i][j].set_xlabel("Annealing Schedule")
|
|
|
+ axes[i][j].set_ylabel("Time Taken (s)", color = 'b')
|
|
|
axis_twin = axes[i][j].twinx()
|
|
|
axis_twin.plot(range(1, 4), solution_scores[i][j], color = 'r')
|
|
|
axis_twin.set_ylabel("Solution Quality", color = 'r')
|
|
@@ -587,7 +587,7 @@ def beck_weathers_graph():
|
|
|
#axis_twin.legend()
|
|
|
|
|
|
plt.tight_layout()
|
|
|
- plt.subplots_adjust(top=0.92)
|
|
|
+ plt.subplots_adjust(top=0.85)
|
|
|
pdf.savefig()
|
|
|
plt.close()
|
|
|
|