Module graph

Source
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 weights N.

Enums§

Directed
Marker type for a directed graph.
Undirected
Marker type for an undirected graph.

Type Aliases§

UndirectedGraph
A Graph with undirected edges.