Progressive Point Matching Preston Fu proposed progressive point matching (PPM), an asymptotically unbiased framework for assigning partial credit in reinforcement learning of long-horizon language model tasks, published in September 2026. PPM treats reasoning as paths through a Markovian state space of "reasoning points" extracted from a reference trajectory, and adds a shortcutting mechanism so that a point counts as reached once all points depending on it are reached. The work addresses the exponential degradation in signal-to-noise of policy gradients from sparse outcome rewards as task horizons grow, while avoiding the asymptotic bias introduced by learned value functions, process rewards, and self-distillation. Progressive Point Matching Preston Fu / September 2026 Today’s LLMs tackle extremely long-horizon tasks that may run continuously for hours or days. Tasks that take humans days or weeks may require language model trajectories containing millions, or eventually billions, of tokens. These capabilities have been enabled by large-scale reinforcement learning RL . The standard approach is to sample full trajectories and to assign a sparse outcome reward to the full trajectory – a 0 or 1 based on whether the trajectory was successful. Empirically, this simple approach has demonstrated stable performance improvements at scale, since the optimal policy has an unbiased objective: it is trained to maximize the likelihood of task success. But as we continue to scale to longer-running tasks, sparse outcome rewards become increasingly inefficient. For example, a trajectory that makes progress on dozens of subtasks but fails at the final one receives the same reward as a trajectory that makes no progress at all. Theoretically, we show that sparse outcome rewards produce policy gradients that degrade exponentially in signal-to-noise with the task horizon. A variety of methods such as learned value functions, process rewards, or self-distillation have introduced asymptotic bias . Here, by bias we mean that optimal policies under the surrogate objective may not be optimal under outcome rewards. For example, process rewards which reward logical correctness https://arxiv.org/abs/2501.07301 at each segment of a trajectory can incentivize saying logically correct statements that are unrelated to eventual task success. We propose progressive point matching PPM , a simple and asymptotically unbiased framework for assigning partial credit. Framework Our key insight is that solving reasoning problems can be regarded as discovering paths through a Markovian state space . Reasoning trajectories are long, and previous reasoning can be compressed into intermediate results. For example, consider the task of theorem proving, which may additionally involve proving intermediate lemmas. Once a trajectory has stated a lemma and proved it, subsequent reasoning can simply condition on the lemma without referring to its proof. We call such intermediate results reasoning points . In practice, we obtain reasoning points from a reference trajectory, like a human-written proof.