Expand description
Directed Graph representation.
The Graph and its components are inspired and mostly copied and refactored from petgraph
crate
https://crates.io/crates/petgraph.
Re-exports§
pub use crate::node::NodeTrait;
Structs§
- Graph
Graph<N, E, Ty>
is a graph datastructure using an associative array of its node weightsN
.
Enums§
- Directed
- Marker type for a directed graph.
- Undirected
- Marker type for an undirected graph.
Type Aliases§
- Undirected
Graph - A
Graph
with undirected edges.