Imagine you're assembling a jigsaw puzzle with four friends, but you're all in different rooms and can only slide pieces under the door — and the doors open at random intervals. The synchronous approach says everyone waits until all doors open simultaneously, then passes pieces. This paper says: stop waiting. Each person works on their section whenever they get a new piece, and the puzzle still converges to the right picture. That's asynchronous block coordinate descent for distributed trajectory estimation. The committed claim: an asynchronous distributed algorithm for multi-robot trajectory estimation that provably converges exponentially fast to the optimal MAP estimate, while eliminating up to 96.9% of inter-agent communications. This is not the first distributed estimation paper, but it is the first to handle asynchrony with convergence guarantees in this specific problem class — trajectory estimation over sliding windows. The architecture is block coordinate descent (BCD), a classical optimization family where each agent optimizes over its own block of variables while holding others fixed. The key structural choice is a MAP approximation that decouples the problem across agents, letting each one work independently on its local block without waiting for updates from neighbors. The sliding window formulation bounds computational cost per step. This is gradient-free in the traditional sense — BCD solves sub-problems exactly or approximately at each step rather than taking gradient steps. On the ladder: the paper names a comparable state-of-the-art algorithm (not specified by name in the abstract, but characterized as the best existing distributed approach) and reports up to 64% less estimation error. That's a substantial margin. The 96.9% communications reduction is the other headline — you're getting better answers while barely talking. The convergence proof (exponentially fast to optimal) is the theoretical backbone, not just an empirical observation. Integrity is the strongest dimension here. The authors deliver on three levels: mathematical proof of exponential convergence, simulations showing the 64% error reduction and 96.9% comms savings, and physical experiments on mobile robots with delays spanning three orders of magnitude (say, 1ms to 1s). That triple stack — proof, simulation, hardware — is rare in a 13-page technical report. The hardware experiments specifically test robustness to delay variation, which is exactly what an async algorithm needs to demonstrate. The milestone question: today we have convergence-guaranteed async estimation for teams of observers tracking teams of robots over sliding windows. The next number that matters is agent count at scale — can this handle 50+ agents with the same convergence rate and comms savings? Swarm robotics, warehouse automation, and autonomous vehicle platoons all need distributed estimation at scales this paper hasn't demonstrated yet. The gap is probably 2-3 years of scaling work and integration with real perception stacks. The experiment the authors did not run: large-scale heterogeneous agent teams with realistic perception noise and partial observability. My read is (a) — they ran out of scope and hardware. A 13-page technical report with proofs, sims, and hardware experiments is already dense. Scaling to 20+ agents with different sensor modalities is the obvious next paper, and they're almost certainly planning it.