nodedb-graph 0.0.5

Shared graph engine (CSR adjacency index + traversal) for NodeDB Origin and Lite
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod compaction;
pub(crate) mod dense_array;
pub mod index;
pub mod memory;
pub mod persist;
pub mod slice_accessors;
pub mod statistics;
pub mod weights;

pub use index::{CsrIndex, Direction};
pub use statistics::{DegreeHistogram, GraphStatistics, LabelStats};
pub use weights::extract_weight_from_properties;