Commit 0ecfd94a authored by MACE Lloyd's avatar MACE Lloyd

Replace UCT.java

parent dd141a58
......@@ -19,6 +19,7 @@ public class UCT {
return Integer.MAX_VALUE;
}
return ((double) nbVictoire/(double) nbVisiteEnfant + coefficientUCT * Math.sqrt(Math.log(nbVisiteParent)/(double) nbVisiteEnfant));
}
public static Noeud trouverNoeudPrometteur(Noeud noeud, double coefficient) {
......
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