The principal variation (PV) is the sequence of moves considered best for both players from the current root node, typically extracted by traversing the search tree and selecting the child with the highest visit count or highest estimated value at each level. It represents the algorithm's primary line of analysis and is the most promising path toward a winning outcome, serving as the main output of the planning process. In Monte Carlo Tree Search, the PV is dynamically updated as simulations refine node statistics.
