Package search.mcts

Class MCTSNode

java.lang.Object
search.mcts.MCTSNode

public class MCTSNode extends Object
Represents a node in the Monte Carlo Tree Search (MCTS) tree. Each node holds information about the move that lead to the current situation, its parent, children, the color of the player that moves next, the number of visits and wins, and whether there is a win in this Move or in this position.