Update ARE-DYNAMIC.py
This commit is contained in:
parent
8b8eda50e0
commit
f4fbfc3d1b
|
@ -680,7 +680,7 @@ def simulation():
|
|||
### Affichage dynamique et graphiques
|
||||
|
||||
|
||||
def matRecup(i, param):
|
||||
ddef matRecup(i, param):
|
||||
"""
|
||||
array*str-> array
|
||||
Récupère la grille avec seulement la valeur de la clef "stratégie" pour chaque joueur , à litération i voulue
|
||||
|
@ -712,12 +712,12 @@ def afficher_strat_dynamique():
|
|||
|
||||
cmap = mpl.colors.ListedColormap(["b","r" ,"black" ,"g"])
|
||||
|
||||
bounds = [0,1,2,3,4]
|
||||
bounds = [0,1,2,3,4,5,6]
|
||||
norm = mpl.colors.BoundaryNorm(bounds, cmap.N)
|
||||
img = plt.imshow(matRecup(0, 'strategie'), interpolation = "nearest", cmap = cmap , norm = norm)
|
||||
|
||||
cb = plt.colorbar(img , cmap=cmap , norm=norm , boundaries = bounds , ticks=bounds)
|
||||
labels = np.arange(0, 4, 1)
|
||||
labels = np.arange(0, 6, 1)
|
||||
cb.set_ticklabels(labels)
|
||||
|
||||
def update(next_iteration,*args):
|
||||
|
@ -774,7 +774,7 @@ def affichage_strats_resultats_totaux():
|
|||
iteration=[]
|
||||
|
||||
# on ajoute des 0 dans les listes gain() et stratUtili() autant qu'il y a de stratégies
|
||||
for i in range(4):
|
||||
for i in range(0,6):
|
||||
gain.append(0)
|
||||
stratUtili.append(0)
|
||||
|
||||
|
@ -792,7 +792,7 @@ def affichage_strats_resultats_totaux():
|
|||
|
||||
iteration.append(i) #on ajoute à la liste itération l'indice i
|
||||
|
||||
Strat=('0','1', '2','3')
|
||||
Strat=('0','1', '2','3','4','5')
|
||||
|
||||
x_pos = np.arange(len(Strat))
|
||||
|
||||
|
|
Loading…
Reference in New Issue