Expand description

Algorithms for graph traversals, i.e. preorder breadth or depth first search as well as postorder depth first search.

Modules

  • Functions and structures related to univocal traversals. Univocal traversals are traversals along unique out-edges or unique in-edges in a graph.

Structs

Traits

  • A type with this trait can tell if a node or edge is forbidden in a graph traversal.
  • A type that defines the strategy for computing the neighborhood of a node or edge, i.e. forward, backward or undirected.
  • A type that defines the order of node processing in a traversal, i.e. queue-based or stack-based.

Type Definitions