Progressive widening is a technique used in Monte Carlo Tree Search (MCTS) for environments with large or continuous action spaces, where the number of child nodes considered for a parent node is gradually increased as the parent's visit count grows. Instead of expanding all possible actions at once—which is computationally infeasible—the algorithm starts with a small subset and intelligently adds new candidate actions over time, focusing computational budget on the most promising regions of the action space. This creates a scalable, adaptive search tree.
