In Monte Carlo Tree Search (MCTS), a rollout is a simulation of a complete sequence of actions from a given state to a terminal outcome, using a fast, default policy (often random) to estimate the state's value. This process, also called a playout, provides a statistical sample of the potential reward from that state without performing an exhaustive search of the entire game tree. The results from many rollouts are aggregated to guide the tree expansion and node selection phases of MCTS, balancing exploration and exploitation.
