From 40cd70fc6fc288e6ca1780590154b53bbff7e9e1 Mon Sep 17 00:00:00 2001 From: NicolasBSN Date: Sun, 23 Apr 2017 11:12:39 +0200 Subject: [PATCH] Update ARE-DYNAMIC.py --- ARE-DYNAMIC.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ARE-DYNAMIC.py b/ARE-DYNAMIC.py index cea2126..205619d 100644 --- a/ARE-DYNAMIC.py +++ b/ARE-DYNAMIC.py @@ -724,7 +724,7 @@ def afficher_strat_dynamique(): img.set_array(matRecup(next_iteration , 'strategie')) return [img] - anim = animation.FuncAnimation(fig, update, frames=range(MaxIterations), interval=500, repeat = False) + anim = animation.FuncAnimation(fig, update, frames=range(MaxIterations), interval=Vitesse, repeat = False) plt.show(block = True) @@ -751,7 +751,7 @@ def afficher_etat_dynamique(): img.set_array(matRecup(next_iteration , 'etat')) return [img] - anim = animation.FuncAnimation(fig, update, frames=range(MaxIterations), interval=500, repeat = False) + anim = animation.FuncAnimation(fig, update, frames=range(MaxIterations), interval=Vitesse, repeat = False) plt.show(block = True)