mapgraph 0.12.0

A directed graph that can also be used as an arbitrary map.
Documentation
1
2
3
4
5
6
7
//! Contains implementations of some algorithms that can be used on [`Graph`](crate::Graph)s.

pub mod dfs;
#[cfg(feature = "alloc")]
pub mod dom;
#[cfg(feature = "alloc")]
pub mod scc;