Visit count is a numerical value stored in each node of a Monte Carlo Tree Search (MCTS) tree, representing the total number of times the selection phase has traversed through that node during the search. It is a fundamental statistic used by the Upper Confidence Bound for Trees (UCT) formula to balance the exploration-exploitation tradeoff, directly influencing which child node is chosen during tree traversal. A higher visit count indicates a more thoroughly evaluated path.
