Probabilistic Focal Search: randomness to lift the lower bound
An arXiv paper adds a coin flip to Focal Search: part of the expansions go to the lowest f node so the lower bound advances and FOCAL grows wider.
Focal Search has carried a concrete inefficiency since its formulation: the node picked by the secondary heuristic may leave the lower bound untouched for hundreds of expansions. While f_min does not rise, FOCAL does not grow, and the nodes that would lead to an acceptable solution stay outside the eligible set. The paper Probabilistic Focal Search: Accelerating Bounded-Suboptimal Search via Lower-Bound Advancement, posted on arXiv on 12 September, attacks that with a change that fits in one line of code.
Bounded suboptimal search looks for a solution no worse than a factor w of optimal, in exchange for exploring far less than an exact search. Focal Search achieves that with two queues: OPEN, ordered by f, and FOCAL, the subset of frontier nodes whose f does not exceed w times f_min. Inside FOCAL a secondary heuristic decides, usually one that is cheaper or better informed about the real distance to the goal.
The change: a coin flip
PFS introduces a parameter p. With probability p it does what Focal Search would do, following the secondary guidance inside FOCAL. With probability 1 minus p it expands the lowest f node in OPEN, which is exactly the move that can raise f_min. As f_min rises, the w times f_min threshold rises with it, FOCAL widens and nodes that were not eligible until then come in.
Put differently, the algorithm splits its budget between two competing goals: exploiting the guidance and guaranteeing that the bound advances. When the bottleneck is delayed admission into FOCAL rather than the quality of the heuristic, spending a fraction of the expansions on moving the bound pays off.
Where they test it
The authors compare PFS against FS on three classic domains: N-Puzzle, pancake sorting and the Traveling Salesperson Problem (TSP), across several values of w and p. They add an evaluation of an anytime extension on the Generalized Covering TSP. And as a transfer experiment they apply the same probabilistic scheduler to Dynamic Potential Search, which yields Probabilistic Dynamic Potential Search (PDPS).
The public abstract on arXiv is cut off right where it began to state the size of the improvement, so the figure has to be looked up in the PDF. That is a fair warning: in work like this the interesting part is not that it improves, it is how much and in which regime of w. An algorithm with w of 1.05 and one with w of 2 live in different worlds, and the second tolerates far more disorder in the expansion policy.
Who should care
The direct audience for work like this is narrow, but well defined:
Route planning and multi-agent path finding, in warehouses, AGV fleets or video games, where Focal Search and its variants are the de facto standard once optimality stops being worth it.
Combinatorial optimization teams already using bounded search, who can try the change without rewriting the whole planner.
* Anyone combining a learned heuristic with a search that carries guarantees: the PFS pattern, mixing a guided policy with a move that secures progress on the bound, does not depend on where the guidance comes from.
That last point is the one that connects with the daily work of people building agents. When the guidance comes from a model, the temptation is to follow it every time. PFS is a reminder of the value of reserving a fraction of the budget for a move that guarantees measurable progress, even if it looks worse in the short term. With one important difference: in search that progress is formally defined, the bound either rises or it does not, and in an LLM based agent it almost never is.
Our assessment is that the appeal of PFS lies in how cheap it is to try, one parameter and one branch in the expansion policy. Its price is that same parameter, because a p that works on N-Puzzle need not work in your domain, and tuning it is empirical work the paper will not save you.
Sources
Read next
OpenDiscoveryTrace: 558 traces to audit AI scientist agents
OpenDiscoveryTrace releases 558 full AI scientist trajectories with nine fields per step, so you can audit the reasoning instead of just the final output.
NormReact: LLMs Expect More Social Punishment Than People
A study with 450 norm violation scenarios measures whether models anticipate who sanctions and how. Six LLMs predict sanctions where people would do nothing.
OpenAI, the Millennium Problems and the bar for proof
OpenAI says its agents solved one of the Millennium Prize Problems. The announcement arrived wrapped in accusations, and that is the useful part.