In Monte Carlo Tree Search (MCTS), a convergence criterion is the algorithmic rule that terminates the loop of selection, expansion, simulation, and backpropagation. Common criteria include a maximum number of iterations, a computational time budget, or a threshold on the confidence of a node's value estimate. This ensures the search is computationally bounded and provides a deterministic output for decision-making, balancing solution quality against available resources.
