nodedb-graph 0.0.6

Shared graph engine (CSR adjacency index + traversal) for NodeDB Origin and Lite
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod csr;
pub mod error;
pub mod sharded;
pub mod traversal;

pub use csr::extract_weight_from_properties;
pub use csr::{CsrIndex, Direction, LocalNodeId};
pub use csr::{DegreeHistogram, GraphStatistics, LabelStats};
pub use error::{GraphError, MAX_EDGE_LABELS};
pub use sharded::ShardedCsrIndex;