Expand description
Base graph structures and operations
This module provides the core graph data structures and interfaces for representing and working with graphs.
Re-exports§
pub use graph::Graph;pub use types::Edge;pub use types::EdgeWeight;pub use types::Node;
Modules§
Structs§
- Bipartite
Graph - A bipartite graph structure
- DiGraph
- A directed graph structure
- Hyperedge
- Represents a hyperedge in a hypergraph
- Hypergraph
- A hypergraph structure
- Multi
DiGraph - A directed multigraph structure
- Multi
Graph - A multigraph structure (allows multiple edges between same nodes)
Traits§
- Index
Type - Trait for the unsigned integer type used for node and edge indices.