Commit 75b2c09a authored by Louis Bahrman's avatar Louis Bahrman

Correction de'une erreur de type dans le renvoi de getcoups et d'un oubli de...

Correction de'une erreur de type dans le renvoi de getcoups et d'un oubli de modification de Arbre en ArbreMCTS
parent 9612ad24
......@@ -63,11 +63,11 @@ public class ArbreMCTS {
return(value.getNote());
}
public ArrayList<Arbre> getfils(){
public ArrayList<ArbreMCTS> getfils(){
return(fils);
}
public ArrayList getcoups(){
public ArrayList<Coup> getcoups(){
return(coups);
}
......
......@@ -45,5 +45,7 @@ public class Selection {
s.chemin.add(indiceSelection);
return SelectionAux(c,arbreSelectionne,s,nbSimulPereNew);
}
}
}
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