A hospital that looks close

A rescue vehicle is six streets from a hospital. On the map, the destination is almost due east. A river lies between them, and the nearest usable bridge is four streets north. One dispatcher explores roads in order of distance already driven. Another adds a straight-line estimate of distance still remaining. Both know the same streets, closures and travel costs. Only their order of attention differs.

The first dispatcher advances like a tide. Every road junction within cost one is considered before cost two, then cost three. The second stretches that wave towards the hospital. Junctions that have already made progress east look more promising, so the search reaches the river quickly, follows it north and finds the bridge. In a large city, the second dispatcher may inspect a small fraction of the junctions considered by the first.

Now change one feature. Tell the second dispatcher to retain only the thirty most promising junctions. The straight-line estimate still points east. The bridge detour initially looks worse, so its junctions may be dropped. A device that previously changed only order now changes the set of futures that remain possible. The same numerical guidance has acquired different control semantics.

That is the central answer: a heuristic buys speed by changing frontier order, while A* preserves the cheapest answer by refusing to confuse deferred alternatives with impossible ones. The price of guidance is paid when an estimate becomes a pruning rule, an early stopping rule or an authority claim without a stated error bound.

Part I

The queue is the mechanism

Search begins when a system cannot directly name the required sequence of actions. It must hold alternatives, choose one to examine, discover successors and continue until a goal is justified. Paper 9 in this canon established the frontier as the organising device. A* adds one idea: give the frontier a disciplined estimate of what remains.

The three numbers on every frontier state

Let a search state be n. A shortest-path search keeps three quantities:

f(n) = g(n) + h(n)

g(n) is the cheapest cost currently known from the start to n. It is earned through explored edges. h(n) estimates the cheapest remaining cost from n to a goal. It is supplied by geometry, abstractions, landmarks, relaxations, learned predictions or domain rules. f(n) estimates the total cost of a solution that passes through n.

Uniform-cost search, commonly implemented with Dijkstra's priority discipline for non-negative edge costs, is the special case h(n) = 0. It trusts only incurred cost.[1] A* selects a frontier state with the smallest f. Hart, Nilsson and Raphael gave the canonical formulation in 1968, although later work clarified the conditions behind some of its strongest efficiency claims.[2][3]

The heuristic does not make an edge cheaper, remove an obstacle or prove that a route exists. It changes which unresolved claim receives the next unit of computation. This is why the priority queue is not an implementation footnote. It is the causal channel through which guidance changes search.

One state space under three frontier disciplines Three abstract expansion shapes show uniform-cost search, exact A star, and a pruned guided beam. The first is circular, the second points towards the goal while retaining side alternatives, and the third narrows so much that a detour is excluded. Uniform cost expands by incurred cost Exact A* orders by a lower bound Pruned guidance preference becomes exclusion
Figure 2. One state space, three control semantics. Illustrative expansion envelopes. Exact A* may be narrow, but it retains unresolved alternatives. A beam or hard budget can erase the detour before evidence settles it.

Guidance has a cost of its own

A node expansion is not the only scarce resource. A geometric distance may cost nanoseconds. A landmark lookup may touch memory. A learned heuristic may require a neural inference. An expensive estimate can reduce expansions and still increase wall-clock time. The priority queue can also dominate on large frontiers. Python's standard heapq documentation makes the underlying min-heap discipline explicit; production implementations then add decrease-key workarounds, stale-entry checks and tie-breaking policy.[10]

This creates the first negative control. Place the start and goal at opposite ends of a one-cell-wide corridor. There is no branch to avoid. Uniform-cost search and A* both expand all twenty-five cells in the laboratory below. A perfect directional estimate provides no allocation advantage because there is no allocation decision. If computing that estimate takes any positive time, it makes the run slower.

Fewer expansions are evidence of better search allocation only after heuristic evaluation, queue operations, memory and edge evaluation have been charged. A paper that reports expansion count alone has measured one mechanism, not total usefulness.

Part II

Why optimism can preserve the answer

The word heuristic often suggests an informal shortcut. In A*, the safety-bearing property is more exact. Let h*(n) be the true cheapest cost from state n to a goal. A heuristic is admissible when

0 ≤ h(n) ≤ h*(n)

Admissibility is disciplined optimism. The estimate may be wrong, sometimes badly wrong, but it never claims that the cheapest remaining route costs more than it really does. Therefore f(n) is a lower bound on the cost of any complete route through n, provided g(n) is the cost of a real discovered path.

Suppose the cheapest solution has cost C*. If a frontier state has f(n) greater than C*, no route through it can improve the optimum. The difficulty is that C* is unknown until search earns it. A* resolves the circularity by repeatedly selecting the smallest lower bound. When a goal is selected under the required conditions, no unresolved frontier state promises a cheaper completion.

This is why the common phrase “A* heads towards the goal” is incomplete. Greedy best-first search orders only by h and can forget the price already paid. A* keeps incurred cost and estimated remaining cost in the same ledger. Its guarantee comes from lower-bound accounting, not from goal-directed appearance.

Worked example: the route that must be reopened

Consider four states. From start S, an edge to A costs 2. An edge to B costs 1. From B to A costs 0.5. From A to goal G costs 2. The direct-looking route S → A → G costs 4. The cheaper route S → B → A → G costs 3.5.

Use h(A) = 0 and h(B) = 2.5. Both values are admissible: neither exceeds the true remaining cost. A* first sees A with f = 2 and closes it. It later reaches B with f = 3.5, then discovers a cheaper path to the already closed A, reducing g(A) from 2 to 1.5.

An admissible but inconsistent heuristic requires a closed state to be reopened A four-node directed graph from S to A and B, from B to A, and from A to G. A ledger shows A first closed with cost two, then improved through B to cost one point five. S A B G 21 0.52 h(A)=0h(B)=2.5 Frontier ledger 1. A: g=2, f=2 A is closed 2. B: g=1, f=3.5 3. B finds A: g(A): 2 → 1.5 reopen A goal cost: 3.5
Figure 3. The reopen test. Synthetic weighted graph. The heuristic is admissible but inconsistent. An implementation that never reopens closed states returns cost 4 rather than the optimum 3.5.

If the implementation allows reopening, A is reconsidered and the optimum is recovered. If it treats “closed” as irrevocable, it keeps the cost-4 route. The arithmetic reveals a crucial separation: admissibility is a property of estimates relative to true cost-to-go; correctness also depends on duplicate handling, termination and the graph-search implementation.

Consistency is a local triangle condition

A heuristic is consistent, also called monotone, when every edge from n to n′ with cost c(n, n′) satisfies

h(n) ≤ c(n, n′) + h(n′)

The estimate is then not allowed to fall by more than the cost paid along an edge. Add g(n′) = g(n) + c(n, n′) for a path extension, and f cannot decrease along that path. Once a state is selected with its cheapest possible g, a later route cannot improve it. Closed really can mean closed.

In the four-state example, consistency fails on B → A: 2.5 is greater than 0.5 + 0. The estimated total falls from 3.5 at B to 1.5 at A. That drop is the visible signal that previously settled ordering may need repair.

Consistency prevents estimated total cost from dropping along an edge Two trajectories compare a consistent heuristic whose f values rise or remain level with an inconsistent heuristic whose f value drops sharply, crossing a closed-state boundary and requiring reopening. estimated total f successive path states consistent: no downward surprise closed-state boundary crossed f drops
Figure 4. Consistency as an operational invariant. Illustrative trajectories. A decrease in f can make an earlier closed-state decision obsolete, so graph search must reopen or otherwise repair the state.

Consistency implies admissibility when the goal has heuristic zero and the graph is well formed for the argument. The reverse does not hold. Felner et al. show why inconsistent heuristics deserve more nuance than the slogan “inconsistency is always bad”: they can trigger re-expansions, sometimes severely, yet they can also carry useful information and reduce expansions in practice.[4] The engineering response is not to ban them. It is to align reopening and measurement with their actual behaviour.

Where lower bounds come from

The most reliable heuristics are often produced by solving an easier problem. Remove a constraint, merge several states into one abstract state, ignore an interaction or project the graph into a geometry. The relaxed problem cannot cost more than the original because every original solution remains available and perhaps additional impossible shortcuts have been admitted. Its optimum is therefore a lower bound.

Manhattan distance on a four-neighbour unit grid ignores walls. A wall can force extra travel, but it cannot create a route shorter than the horizontal and vertical displacement. A sliding-tile heuristic may sum each tile's distance while ignoring collisions among tiles. A road heuristic may use straight-line distance divided by a defensible maximum speed, or landmark distances combined through triangle inequalities. The useful information comes from structure retained by the relaxation; admissibility comes from the constraints deliberately removed.

This construction also reveals why combining heuristics needs care. The maximum of several admissible lower bounds remains admissible: if each is no greater than true cost, their maximum is also no greater. Their sum may double-count the same remaining work and exceed true cost unless the problem supplies an additive decomposition. “More signals” is not a proof.

Prediction accuracy has asymmetric meaning here. An underestimate may waste computation yet preserve the lower-bound role. An overestimate may be small in average error and still invalidate a shortest-path certificate on the one state that carries the optimum. Mean absolute error therefore cannot establish admissibility. The relevant tests include the sign and location of error, behaviour under shift and whether the construction makes violation impossible.

What a stronger heuristic can and cannot promise

Among two admissible heuristics, h2 is more informed than h1 when h2(n) ≥ h1(n) for every state while both remain below true cost-to-go. Its lower bounds are tighter. It can rule out more states whose best possible completion already exceeds the optimum.

But “larger admissible values mean faster A*” is not a complete operational law. Tie-breaking controls how many states on the f = C* plateau are expanded. Inconsistency can cause reopens. A tighter heuristic may cost much more to evaluate. It may change cache behaviour or parallelism. Dechter and Pearl corrected the over-broad reading of the original “optimal efficiency” theorem: the strongest minimal-expansion claim depends on consistency and on the comparison class.[3]

Landmark methods make this trade visible. Goldberg and Harrelson derive lower bounds from distances to selected landmarks and the triangle inequality, improving road-network search while retaining exactness.[6] More landmarks can tighten guidance, but preprocessing, storage and query-time lookups are part of the bill. At the unattainable extreme, a heuristic that computes exact cost-to-go has already solved much of the original problem.

Optional derivation: why stopping on goal selection matters

For tree search with an admissible heuristic, consider the first goal selected from the priority queue. Its heuristic is zero, so its f-value equals its path cost. If a cheaper solution existed, some frontier state on that cheaper path would have f no greater than the cheaper solution cost and therefore lower than the selected goal. That contradicts selection of the minimum f.

Graph search adds duplicate states. With a consistent heuristic, the first selected path to a state is cheapest, so the tree argument carries cleanly. With an admissible but inconsistent heuristic, an implementation must allow improved paths to reopen states or use another correctness-preserving repair. Merely generating a goal is not enough; the goal must be selected under the algorithm's safe stopping condition.

Part III

How guidance creates blind spots

Exact A* can be slow or memory-hungry even with a good heuristic. Real systems add deadlines, queue caps, beams, weighted priorities, approximate models and learned scores. Each addition may be rational. The mistake is to keep the language of exact A* after changing the semantics that made its answer exact.

The laboratory's decoy map makes this concrete. A Manhattan heuristic reaches the goal with cost 32 after 92 expansions. A second heuristic remains admissible by subtracting value in the upper chamber, making that dead-end region look exceptionally promising. With reopening and no cap, it still finds cost 32, but after 254 expansions and 80 reopens. With a 120-expansion budget, it returns no route even though one exists. The estimate changed order; the cap converted that order into a blind spot.

Search risk rises when estimate error meets exclusion pressure A two-dimensional surface with heuristic overestimation on the horizontal axis and operational exclusion on the vertical axis. The lower-left zone is exact, the centre contains bounded approximation, and the upper-right is an unqualified blind spot. exact region bounded approximation blind spot lower bound + retained frontier weight or bound is explicit silent pruning or unsupported stop heuristic overestimation or miscalibration → exclusion pressure → budget raises exclusion pressure
Figure 5. The guidance safety surface. Illustrative, not a measured phase transition. Estimate error and exclusion policy are separate axes. Either can be managed; an unlabelled combination destroys the meaning of the answer.

Weighted a* spends optimality deliberately

One controlled trade is to order by g(n) + w h(n) for a weight w greater than one. The search leans harder on estimated progress. Under the standard assumptions and an admissible heuristic, weighted A* can return a solution whose cost is bounded relative to optimum, rather than an exact optimum. The bound is part of the algorithm's meaning, not a post-hoc excuse.

In the synthetic weighted-lane case, the direct row contains eleven cells with traversal cost 3. A one-row detour uses unit-cost cells. Exact A* returns cost 14 after 17 expansions. Weighted A* with w = 3 selects the direct route at cost 34 after 13 expansions. It saved four expansions and accepted a route 2.43 times the optimum. The theoretical weight bound is 3 under the laboratory assumptions, so the result is poor but not unaccounted for.

Anytime Repairing A* turns this into a time-sensitive procedure. It first inflates the heuristic to obtain a bounded suboptimal solution, then lowers the inflation and reuses previous search effort to improve the incumbent towards optimality.[5] That is materially different from an arbitrary timeout. At interruption, the system can report an incumbent solution and a bound, rather than a fluent assertion that no better route exists.

Synthetic laboratory results separate expansions from answer quality Horizontal bars compare expansion counts for uniform cost, exact A star, weighted A star, a decoy heuristic under a budget, and a corridor negative control. Text labels show path cost or failure. Expanded states 050100150200250 Wall-gap: uniform227, cost 26 Wall-gap: exact A*84, cost 26 Weighted lane: exact A*17, cost 14 Weighted lane: w=313, cost 34 Decoy + budget120, no answer Corridor: uniform25, cost 24 Corridor: exact A*25, cost 24
Figure 6. Expansion count is not answer quality. Measured by the executable synthetic laboratory in this article. Unit: expanded grid states. Costs use the scenario's stated traversal units; “no answer” means the expansion budget expired, not that the goal was unreachable.

Five ways an estimate becomes an exclusion rule

First, overestimation can make an optimal route look provably too expensive when it is not. This matters whenever a cutoff, incumbent bound or early stop relies on f. NetworkX's current A* documentation states the practical consequence plainly: an inadmissible heuristic may return a non-shortest path, and with a cutoff it may ignore qualifying paths.[9]

Second, a beam retains only a fixed number of frontier states. Beam width is a memory policy with search consequences. A state ranked forty-first is not merely postponed when the width is forty; it is erased unless another mechanism reconstructs it.

Third, a hard expansion or time budget stops search before the safe termination condition. The correct output may be “unknown within budget”, an incumbent with a bound, or an escalation. “No route” is a different claim.

Fourth, duplicate suppression can freeze an inferior route. An inconsistent heuristic with no reopening silently changes graph search, as the four-state example showed. Some library implementations cache one heuristic value per node, which also means a supposedly dynamic heuristic may not behave as its designer expects.[9]

Fifth, the world model can be stale. An admissible distance estimate on yesterday's graph says nothing about whether today's bridge is closed. A* certifies an answer relative to the graph and costs it was given. Dynamic or repeatedly changing environments call for state refresh and often incremental replanning methods such as D* Lite, not rhetorical confidence in the original plan.[13]

Learned guidance changes the evidence burden

Learned heuristics can capture structure that simple geometry misses. Neural A* couples a learned guidance map to a differentiable search process and reports improved search efficiency and path quality in its evaluated planning settings.[8] This is useful evidence for data-driven guidance. It is not, by itself, a proof that a prediction is a lower bound on every deployment state.

Recent work attacks that gap directly. Ehsan Futuhi and Nathan Sturtevant propose a constrained learning objective aimed at admissible heuristics and study generalisation beyond training distributions.[11] An T. Le and Vien Ngo propose a landmark-compression architecture whose outputs remain admissible by construction for every parameter setting.[12] Both are recent preprints, so they should be read as frontier mechanisms under evaluation, not settled replacements for classical proofs.

A practical pattern is to separate an anchor lower bound from a learned ranking score. The anchor supports the certificate. The learned score decides which promising work to attempt first. If the learned score drifts, search may slow, but the guarantee need not disappear. This separation mirrors the paper's central distinction between guidance and authority.

Part IV

Engineering a guidance contract

A heuristic should enter an architecture with the same discipline as a typed interface. Its consumers need to know what the number means, what has been proved, which search operations may rely on it and what evidence survives interruption. Calling a score “distance to goal” is not enough.

The proposed instrument is a guidance contract. It does not standardise one algorithm. It prevents an ordering signal from acquiring stronger semantics by accident.

Guidance contract: the minimum fields before deployment
FieldQuestion that must be answeredEvidence or control
Cost semanticsWhat does one path cost, and is it non-negative, additive and stable?Typed units, state variables, edge-cost tests and versioned cost policy.
Heuristic statusIs the value a lower bound, a calibrated estimate or only a ranking score?Proof by relaxation or construction, empirical error study, or an explicit “no bound” label.
ConsistencyCan f decrease across an edge?Property tests on generated edges; reopening enabled when the condition is not established.
Search semanticsDoes guidance order all retained states, inflate priority, prune, cap or beam?Algorithm name is insufficient; record the actual queue, duplicate and discard rules.
Stopping ruleWhat observation authorises “optimal”, “bounded”, “feasible”, “unknown” or “unreachable”?Goal-selection condition, lower-bound certificate, incumbent ratio or exhausted-frontier proof.
Resource accountingDoes the heuristic save total time, memory or expensive edge evaluations?Wall-clock, expansions, heuristic calls, queue operations, peak frontier and edge-evaluation cost.
World stateWhich graph, closures and costs did the answer assume?Snapshot identifier, freshness policy, invalidation trigger and replanning route.
Release evidenceWhat can a downstream system safely claim?Decision receipt containing incumbent, bound, failure reason, versions and unresolved uncertainty.

Three words in the contract carry unusual weight. Ordering means every unresolved state remains recoverable. Bounding means approximation has a quantitative envelope. Exclusion means a future has been removed, so the system owes a reason stronger than rank.

A guidance contract surrounds the queue with proof, resource and state obligations A circular cutaway places frontier ordering at the centre, surrounded by rings for heuristic evidence, search semantics, resource policy, world-state version and output claim. frontier order search semantics heuristic evidence resource policy world state + output claim Exclusion checkpoint A beam, cutoff or timeout crosses the boundary and must change the claim attached to the result. Decision receipt graph v · heuristic v · incumbent lower bound · weight · stop reason expansions · unresolved status
Figure 7. The guidance contract cutaway. Design inference. The centre is merely a priority rule. Guarantees arise from the surrounding evidence and controls, especially wherever a policy removes work.

Worked scenario: routing urgent supplies

Consider a synthetic regional logistics service routing urgent medical supplies. Its road graph is large enough that uniform-cost search misses the response target. Edge costs are expected minutes and are non-negative. Closures arrive from a separate event feed. Two guidance sources are available.

The first is a landmark lower bound. Distances from selected landmarks were precomputed on the base network. Triangle inequalities yield a conservative estimate for each query. The second is a learned travel-time model using road class, time of day and recent congestion. It is often more accurate, but it sometimes overestimates under distribution shift.

An unsafe design replaces the lower bound with the learned prediction, imposes a two-second timeout and returns the current route as “shortest”. Three independent changes have been hidden: the heuristic has lost its proof, the safe termination condition has become a clock, and the output claim has remained exact.

A defensible design retains the landmark estimate as an anchor. The learned model ranks work within the region still licensed by the anchor, or proposes an incumbent route early. Search records the minimum anchor f on the frontier, L, and the cost of the best complete route, C. If interrupted, it can report the route with the observed ratio C/L, subject to the algorithm's stated conditions, or return “no bounded route within the current budget”.

The closure feed carries a world-state version. A route receipt binds the graph snapshot, closure watermark, cost-policy version, heuristic versions, incumbent cost, lower bound, stopping reason and post-search freshness check. If a closure supersedes the snapshot before dispatch, the route is invalidated and replanned. A* certifies a path through a model; the receipt states which model earned the certificate.

A bounded route emerges from two guidance channels and a versioned world state A temporal sequence shows a world snapshot, an admissible anchor queue, a learned proposal queue, an incumbent route, a lower-bound comparison, and a decision receipt followed by a freshness check. 1. Snapshotgraph + closuresv17 2. Anchorproved lower boundmin f = L 3. Learned rankfast proposal ordercandidate 4. Compareincumbent C / Lbound 5. Receiptthen readback new closure invalidates snapshot and restarts the cycle
Figure 8. Production-shaped bounded routing. Synthetic architecture, not a deployment claim. The learned channel accelerates proposal; the anchor and versioned state determine what the system may assert.

A decision instrument for choosing the search policy

The following matrix is intentionally decision-shaped. It asks what answer the system owes before selecting an algorithm.

Choose guidance from the required claim
Required outcomeSuitable disciplineNon-negotiable control
Provably cheapest path on a static graphA* with an admissible heuristic; consistent heuristic or reopening.Stop on the safe goal condition and retain unresolved frontier states.
Fast feasible path with a quantitative quality envelopeWeighted or anytime A* under its stated assumptions.Return the incumbent, lower bound and suboptimality bound together.
Learned score with no lower-bound evidenceUse it as a tie-breaker, proposal queue or secondary guide beside an anchor.Do not let the score alone certify pruning or shortest-path claims.
Expensive collision or edge checksLazy or edge-evaluation-aware search.Measure expensive evaluations, not only vertex expansions.
Repeated changes to costs or obstaclesIncremental replanning with explicit state invalidation.Bind every answer to a graph version and verify freshness before action.
No meaningful branchingUniform-cost or direct traversal.Use the corridor negative control before paying for guidance.

Public grid benchmarks such as Sturtevant's Moving AI collections are useful because they expose maps, scenarios and optimal path lengths for repeatable comparison.[7] They do not substitute for the production cost function. A warehouse with turning penalties, one-way aisles and time-dependent congestion needs state and tests that represent those mechanisms.

Benchmark the decision, not the heuristic in isolation

A matched evaluation varies one causal feature at a time. Hold the graph, cost function, duplicate policy, stopping rule, tie-breaking and hardware fixed; then replace only the heuristic. Run uniform cost as the zero-heuristic baseline. Add an oracle or exact reverse-distance heuristic on small cases to show the maximum allocation opportunity. Include the corridor control, where no method can avoid work.

For every scenario, compute or verify the true optimum offline when feasible. Stratify results by branching factor, obstacle density, solution depth, heuristic error, inconsistency and world-state shift. A mean across easy maps can conceal catastrophic tails. Report distributions and paired differences, not only a single average. When the system may abstain, include coverage and distinguish budget expiry from exhausted-frontier proof.

Then charge the complete mechanism. Record heuristic construction and evaluation time, queue time, edge checks, reopens, memory and end-to-end latency. If a learned heuristic batches efficiently only at high concurrency, test both isolated and loaded operation. If preprocessing is shared across queries, state the amortisation horizon. If a graph update invalidates a table, include rebuild or repair cost.

The decision criterion follows the required claim. For exact search, compare total resource use subject to zero optimality violations. For bounded search, compare resource use at a fixed certified bound. For proposal-only guidance, compare time to a useful incumbent while the anchor preserves the certificate. Never reward a method for answering quickly after silently changing what counts as an acceptable answer.

Test the contract, not only the happy path

A release test should generate or sample edges and check lower-bound and consistency claims where ground truth is available. It should inject an inconsistent heuristic and confirm reopening. It should expire the budget one expansion before success and verify that the output is “unknown”, not “unreachable”. It should increase heuristic evaluation latency until the apparent expansion win disappears. It should mutate a closure after route computation and confirm invalidation before action.

Report at least path cost, optimality or bound status, expanded and reopened states, generated states, maximum frontier, heuristic calls, heuristic time, edge-evaluation time, total latency and peak memory. Separate the search's internal outcome from the business postcondition. A route can be computed correctly and still fail to be dispatched, accepted or traversed.

The best heuristic is therefore not the estimate with the lowest prediction error in isolation. It is the guidance mechanism that minimises decision cost while preserving the exact claim, bounded claim or abstention behaviour the use case requires.

Executable artefact

Run the a* laboratory

The laboratory uses synthetic four-neighbour grids, deterministic non-negative traversal costs and a stable map during each run. Manhattan distance is admissible and consistent because every move changes the coordinate distance by at most one and the minimum step cost is one. The “decoy” heuristic subtracts value in the upper chamber, so it remains admissible but becomes inconsistent. The implementation reopens by default.

Use the wall-gap preset to see guidance preserve cost while reducing expansions. Use the weighted lane to see a small allocation gain purchase a large path-cost increase. Use the decoy budget to see an admissible heuristic fail operationally when a cap converts delay into exclusion. Use the corridor as the negative control.

Interactive a* laboratory

Change one control at a time, then compare the result with the exact uniform-cost baseline computed on the same map.

Ready
A star search grid Interactive visualisation of walls, terrain, expanded states and the returned path.
startgoalwallcost 3expandedreturned pathexact baseline if configured search stops
Figure 9 and executable artefact. A* laboratory. Results are measured in the browser on synthetic data. Expected reference cases: wall-gap exact A* cost 26 with 84 expansions versus uniform cost with 227; weighted lane w=3 cost 34 versus optimum 14; decoy plus budget expires at 120 although standard A* succeeds at 92; corridor expands 25 under either policy.
View assumptions, expected output and complete JavaScript

Assumptions

  • Four-neighbour movement; deterministic, static grid; positive destination-cell costs.
  • The priority key is g + w h, with larger g used to break equal f values.
  • A budget stops before the next expansion and therefore returns “unknown within budget”.
  • The exact baseline is uniform-cost search with no budget and reopening enabled.

Positive and negative cases

Positive: on the wall-gap map, Manhattan A* must return the same cost as uniform cost and expand fewer states. Negative: on the decoy map, an admissible but inconsistent heuristic under a 120-expansion cap must fail to return a path while the exact baseline proves one exists.

The executable source is embedded at the end of this document. View source or save the page to inspect it.

Compact glossary

Admissible heuristic
An estimate that never exceeds true cheapest remaining cost.
Consistent heuristic
An estimate satisfying the local triangle condition, so f does not decrease along a path.
Frontier
Generated but unresolved states available for future expansion.
Incumbent
The best complete solution found so far, which may or may not be optimal.
Reopening
Returning a closed state to the frontier after discovering a cheaper path to it.
Suboptimality bound
A quantitative ceiling on solution cost relative to the unknown optimum under stated assumptions.

Source ledger

The article's formal claims are grounded in primary papers and official implementation documentation. Recent learned-admissibility items are marked as preprints.

  1. Primary E. W. Dijkstra, “A note on two problems in connexion with graphs”, Numerische Mathematik, 1959.
  2. Primary Peter E. Hart, Nils J. Nilsson and Bertram Raphael, “A formal basis for the heuristic determination of minimum cost paths”, 1968.
  3. Primary Rina Dechter and Judea Pearl, “Generalized best-first search strategies and the optimality of A*”, Journal of the ACM, 1985.
  4. Primary Ariel Felner et al., “Inconsistent heuristics in theory and practice”, Artificial Intelligence, 2011.
  5. Primary Maxim Likhachev, Geoffrey Gordon and Sebastian Thrun, “ARA*: Anytime A* with provable bounds on sub-optimality”, 2003.
  6. Primary Andrew V. Goldberg and Chris Harrelson, “Computing the shortest path: A* search meets graph theory”, 2005.
  7. Benchmark Nathan Sturtevant, “Benchmarks for grid-based pathfinding”, 2012, with the Moving AI benchmark repository.
  8. Primary Ryo Yonetani et al., “Path planning using Neural A* search”, ICML 2021.
  9. Official NetworkX, astar_path documentation, checked during drafting.
  10. Official Python Software Foundation, heapq documentation, checked during drafting.
  11. Preprint Ehsan Futuhi and Nathan R. Sturtevant, “Learning admissible heuristics for A*: Theory and practice”, 2025.
  12. Preprint An T. Le and Vien Ngo, “AAC: Admissible-by-architecture differentiable landmark compression for ALT”, 2026.
  13. Primary Sven Koenig and Maxim Likhachev, “D* Lite”, AAAI 2002.

Spend guidance without spending the claim

A* matters because it demonstrates a rare engineering possibility: a system can use fallible guidance aggressively while preserving an exact answer. The estimate need not predict perfectly. It must support the lower-bound role assigned to it, and the search must retain, reopen and stop in ways that honour that role.

The durable intuition is simple. Uniform-cost search pays attention according to cost already incurred. A* adds an optimistic account of cost still owed. A useful heuristic tightens that account and directs computation towards states that can still win. Consistency makes the account locally stable. Weighted and anytime variants spend some exactness in a controlled way. Learned guidance can add information, but it does not inherit a certificate merely by entering an A* loop.

The architecture decision that changes is where guidance is allowed to carry authority. A lower bound may support exact stopping. A bounded inflation may support a quantified approximation. An unproved score may rank proposals. A budget may justify “unknown within budget”. None of these licences is interchangeable.

Before releasing a guided search system, write the guidance contract, run the corridor control, inject inconsistency, expire the budget and stale the world state. Measure total decision cost, not only expansions. Return a receipt that distinguishes optimal, bounded, feasible, unknown and unreachable. Then the system can move faster because it knows what its guidance permits it to say.