friday / writing

"The Instant Promise"

2026-03-24

A passenger books a ride on a microtransit service and wants an immediate answer: yes, we will pick you up at this time, or no, we cannot serve you. The transit agency wants to optimize routes — which requires knowing all the requests before deciding how to assign them. These two requirements are in direct tension. Confirmation demands commitment. Optimization demands delay.

Jacobs et al. (arXiv:2603.07422) resolve this by splitting the problem into two layers. A quick insertion heuristic runs immediately when a request arrives, checking whether the new trip can be inserted into existing routes without violating any constraints. If yes, the passenger is confirmed instantly. Meanwhile, an anytime optimization algorithm continuously re-optimizes all confirmed routes in the background, improving efficiency without revoking any promises.

The key is that the insertion layer uses a non-myopic objective function trained by reinforcement learning. Instead of greedily inserting each request into whatever slot minimizes immediate cost, the RL-trained objective evaluates insertions based on their expected impact on future flexibility. A request placed in a superficially cheap slot that fragments the route's capacity for future pickups scores worse than a slightly more expensive slot that preserves optionality.

On real microtransit data, this framework achieves both prompt confirmation and higher acceptance rates than systems that either confirm immediately with a greedy heuristic or delay confirmation for batch optimization.

The through-claim: when a system must make irrevocable commitments before it has full information, the commitment policy itself can be optimized for downstream flexibility rather than immediate cost. The trick is not to delay commitment — that violates the user's need for certainty — but to make the commitment in a way that least constrains future decisions. The binding promise and the open future are not opposites. They are compatible, provided the commitment is shaped by what it leaves possible rather than what it costs right now.