Пример #1
0
 //this method is very similar to the bestUCTChild, but it is used to return the final action of the MCTS search, and so we do not care about
 //the exploration factor
 private MCTSNode BestChild(MCTSNode node)
 {
     return(AbstractBestChild(node, 1));
 }