コード例 #1
0
 def update(i):
     for ax in self.figure.get_axes():
         ax.clear()
     graph_list(0, self.options, self.graph, 0, 0, None)
     for n in range(len(self.graph['p']) - 1):
         graph_list(3, self.options, self.graph, i, n, self.ants)
     plt.gca().invert_yaxis()
     self.figure.canvas.draw()
コード例 #2
0
 def action(self, state):
     for ax in self.figure.get_axes():
         ax.clear()
     graph_list(0, self.options, self.graph, 0, 0, None)
     if state == True:
         graph_list(1, self.options, self.graph, self.length, 0, None)
     plt.gca().invert_yaxis()
     self.figure.canvas.draw()
コード例 #3
0
ファイル: class_obj.py プロジェクト: tflahaul/lem-in
 def optimum_path(self, state):
     for ax in self.figure.get_axes():
         ax.clear()
     graph_list(0, self.options, self.graph, 0, 0, None)
     if state == True:
         for n in range(len(self.graph['p']) - 1):
             graph_list(2, self.options, self.graph, self.length, n, None)
     plt.gca().invert_yaxis()
     self.figure.canvas.draw()
コード例 #4
0
ファイル: class_obj.py プロジェクト: tflahaul/lem-in
 def ants_path(self, state):
     for ax in self.figure.get_axes():
         ax.clear()
     graph_list(0, self.options, self.graph, 0, 0, None)
     if state == True:
         def update(i):
             for ax in self.figure.get_axes():
                 ax.clear()
             graph_list(0, self.options, self.graph, 0, 0, None)
             for n in range(len(self.graph['p']) - 1):
                 graph_list(3, self.options, self.graph, i, n, self.ants)
             plt.gca().invert_yaxis()
             self.figure.canvas.draw()
         ani = animation.FuncAnimation(self.fig, update, frames=self.length, interval=self.interval, repeat=False)
     plt.gca().invert_yaxis()
     self.figure.canvas.draw()