Skip to main content

Module repr

Module repr 

Source
Expand description

Graph representations: adjacency list, adjacency matrix, edge list, CSR, weighted graph.

Re-exports§

pub use adjacency_list::AdjacencyList;
pub use adjacency_matrix::AdjacencyMatrix;
pub use csr_graph::CsrGraph;
pub use edge_list::EdgeList;
pub use weighted_graph::WeightedGraph;

Modules§

adjacency_list
Adjacency-list graph representation.
adjacency_matrix
Adjacency-matrix graph representation (row-major boolean).
csr_graph
Compressed Sparse Row graph representation.
edge_list
Edge list representation.
weighted_graph
Weighted graph representation (adjacency list of (neighbor, weight)).