Update ARE-DYNAMIC.py
This commit is contained in:
parent
fdeba3d92e
commit
0882b09638
|
@ -372,7 +372,10 @@ def matrice_init_pourcents_choisis():
|
|||
for i in range(TailleGrilleY): #on vérifie qu'il n'y a pas d'index vides
|
||||
for j in range(TailleGrilleX): #si oui, on le rempli avec une strat aléatoire
|
||||
if matrice_strat[i][j] == -1:
|
||||
matrice_strat[i][j] = random.randint(0, len(ListePourcents))
|
||||
while matrice_strat[i][j] == -1:
|
||||
strat_aleatoire = random.randint(0, len(ListePourcents))
|
||||
if ListePourcents[strat_aleatoire] != 0.0:
|
||||
matrice_strat[i][j] = strat_aleatoire
|
||||
|
||||
matrice = matrice_init_vide()
|
||||
|
||||
|
|
Loading…
Reference in New Issue