oxicuda-graphalg 0.3.0

OxiCUDA: Classical graph algorithms (BFS/DFS, shortest paths, MST, max-flow, matching, SCC, centrality, community, TSP, coloring, isomorphism)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Graph representations: adjacency list, adjacency matrix, edge list, CSR, weighted graph.

pub mod adjacency_list;
pub mod adjacency_matrix;
pub mod csr_graph;
pub mod edge_list;
pub mod weighted_graph;

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;