pub type UnGraph<N, S = FixedHasher> = Graph<false, N, S>;
Expand description
A Graph
with undirected edges of some GraphNodeId
N
.
For example, an edge between 1 and 2 is equivalent to an edge between 2 and 1.
Aliased Typeยง
pub struct UnGraph<N, S = FixedHasher> { /* private fields */ }