pub type DefaultPriQueue<'a, A, D, H> = BinHeap<<A as Adjacencies<'a>>::Node, Data<<A as Adjacencies<'a>>::Edge, D, H>>;
Expand description

Default priority queue type to be used in an A* search.

  • A is the graph type information
  • D is the type of distance values
  • H is the type of heuristic values