Type Definition petgraph::graph::UnGraph [] [src]

type UnGraph<N, E, Ix = DefaultIx> = Graph<N, E, Undirected, Ix>;

A Graph with undirected edges.

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