AUTOPLAY #13

Merged
Riad KARA-MOSTEFA merged 2 commits from AUTOPLAY into master 2026-01-30 09:37:05 +01:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 3aec1d3f6e - Show all commits

View File

@@ -34,8 +34,8 @@ public abstract class AbstractGame {
// constructeur à appeler dans le constructeur d'un fils concret avec super.
public AbstractGame(IBoard b, EnumMap<Player,AbstractGamePlayer> m){
this.currentBoard=b;
this.mapPlayers=m;
this.currentBoard=b;
this.mapPlayers=m;
}
/**

View File

@@ -10,7 +10,7 @@ public class Simulation extends AbstractGame {
//ATTRIBUTS
private HexPly bestmove;
private float bestoutcome;
private int MAXDEPTH = 5;
private int MAXDEPTH = 6;
private LinkedList<Integer[]> taken = new LinkedList<Integer[]>();
//ATTRIBUTS QUE JE NE VOUDRAIS PAS CRÉER IDÉALEMENT