Type Alias UnGraph

Source
pub type UnGraph<S = FixedHasher> = Graph<false, S>;
Expand description

A Graph with undirected edges.

For example, an edge between 1 and 2 is equivalent to an edge between 2 and 1.

Aliased Typeยง

struct UnGraph<S = FixedHasher> { /* private fields */ }