hypergraph 4.2.0

Hypergraph is data structure library to create a directed hypergraph in which an hyperedge can join any number of vertices.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod hypergraph_impl;
mod lookups;
mod paths;
mod projections;
mod properties;
mod structural;
mod trait_def;
mod traversal;

#[cfg(feature = "persistence")]
mod persistent_impl;

pub use projections::CentralityScores;
pub use properties::NestednessEntry;
pub use trait_def::HypergraphQuery;