Module daggy::petgraph::algo
[−]
[src]
Graph algorithms.
It is a goal to gradually migrate the algorithms to be based on graph traits so that they are generally applicable. For now, most of these use only the Graph type.
Functions
condensation |
Condense every strongly connected component into a single node and return the result. |
connected_components |
Return the number of connected components of the graph. |
dijkstra |
Dijkstra's shortest path algorithm. |
is_cyclic |
Deprecated: Renamed to |
is_cyclic_directed |
Return |
is_cyclic_undirected |
Return |
is_isomorphic |
Return |
is_isomorphic_matching |
Return |
min_spanning_tree |
Compute a minimum spanning tree of a graph. |
scc |
Compute the strongly connected components using Kosaraju's algorithm. |
toposort |
Perform a topological sort of a directed graph. |