Module graph_algorithms

Module graph_algorithms 

Source
Expand description

Algorithms on graphs.

Structs§

DFS
Depth-first search over a finite graph.

Enums§

TraversalDirection
An enum which parameterises the traversal direction for the depth first traversal function.

Functions§

bounded_simple_paths
Iterates over all simple paths of bounded length between two vertices.
simple_paths
Iterates over all simple paths between two vertices of a finite graph.
spec_order
Arrange some or all elements of a graph in specialization order.
spec_order_all
Arrange all the elements of a finite graph in specialization order.
toposort
Computes a topological sorting for a given graph.