[][src]Type Definition rs_graph::search::astar::DefaultPriQueue

type DefaultPriQueue<'a, A, D, H> = BinHeap<<A as GraphType<'a>>::Node, Data<<A as GraphType<'a>>::Edge, D, H>>;

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