From d7c0be768aa312b55c7dc4beb603911500f08ab9 Mon Sep 17 00:00:00 2001 From: lucieho Date: Mon, 10 Apr 2017 20:58:40 +0200 Subject: [PATCH] Update ARE-DYNAMIC.py --- ARE-DYNAMIC.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ARE-DYNAMIC.py b/ARE-DYNAMIC.py index 2e767ce..657c767 100644 --- a/ARE-DYNAMIC.py +++ b/ARE-DYNAMIC.py @@ -483,7 +483,9 @@ def strat_meilleur_gain (joueur, adversaire): max_gain = joueur['annees_de_prison'] nveau_etat = joueur['etat'] for i in range (-1,2): - for j in range (-1,2): #(i,j) sont les coordonnées de l'adversaire + for j in range (-1,2): #(i,j) sont les coordonnées de l'adversaire + x = joueur['x'] + y = joueur['y'] if (0 <= x+i and x+i < len(Grille)) and (0 <= y+j and y+j < len(Grille[0])) and i != 0 and j != 0: if Grille[i][j]['annees_de_prison'] < max_gain : max_gain = Grille[i][j]['annees_de_prison']