コード例 #1
0
ファイル: MCTS.cs プロジェクト: RicardoPereiraIST/IAJ-Project
 //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));
 }