Commit 677873c9 authored by MACE Lloyd's avatar MACE Lloyd

Delete AlgoRechercheMCTS.java

parent f8cbd57c
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package tictactoecodingame;
import mcts.MCTS;
/**
*
* @author Lloyd
*/
public class AlgoRechercheMCTS extends AlgoRecherche {
//Joueur joueurMCTS;
Joueur adversaire;
/*
public AlgoRechercheMCTS(Joueur joueurMCTS, Joueur adversaire) {
this.joueurMCTS = joueurMCTS;
this.adversaire = adversaire;
}
*/
public AlgoRechercheMCTS(Joueur adversaire) {
this.adversaire = adversaire;
}
public Joueur getAdversaire() {
return adversaire;
}
public void setAdversaire(Joueur adversaire) {
this.adversaire = adversaire;
}
@Override
public Coup meilleurCoup(Plateau _plateau, Joueur _joueur, boolean _ponder) {
MCTS mcts = new MCTS(_plateau, _joueur, adversaire);
return mcts.meilleurCoup();
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment