Standard Monte Carlo Tree Search (MCTS) is designed for discrete, combinatorial action spaces like board games. Continuous action spaces, common in robotics control or parameter optimization, present a fundamental challenge: the tree cannot naively branch for every possible real-valued action. Core adaptations include progressive widening, which gradually adds child nodes to a parent as its visit count increases, and value function approximation, which uses a learned model to estimate the value of new, unsampled actions without full simulation.
