Commit bac0ca8d authored by CRESCENCE Cassandre's avatar CRESCENCE Cassandre

Update MeilleurCoup.java

parent aa357f06
...@@ -11,8 +11,10 @@ import tictactoecodingame.Coup; ...@@ -11,8 +11,10 @@ import tictactoecodingame.Coup;
* *
* @author Lloyd * @author Lloyd
*/ */
public class MeilleurCoup { public class MeilleurCoup {
// Cette méthode permet retourne le coup associé au noeud qui possède le meilleur score UCT
public static Coup getMeilleurCoupUCT(Noeud racine) { public static Coup getMeilleurCoupUCT(Noeud racine) {
Noeud meilleurNoeud = new Noeud(); Noeud meilleurNoeud = new Noeud();
double score; double score;
......
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