Node Priority Queue

The nodequeue module provides a C++-backed priority queue for node management. PriorityManagerInterface is the abstract base class and extends BaseNodeManager. BestFirstSearch is the built-in concrete implementation that selects nodes by lowest lower bound.

For level-based managers built on top of this module see Level Queue.

PriorityManagerInterface

BestFirstSearch