|
@@ -513,7 +513,7 @@ def reinhold_messner_graph():
|
|
|
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')
|
|
|
- axis_twin = axes[i].twinx()
|
|
|
+ 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')
|
|
|
#axes[i].legend()
|