hypergraph 4.1.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
pub(crate) mod add_hyperedge;
pub(crate) mod clear_hyperedges;
pub(crate) mod contract_hyperedge_vertices;
pub(crate) mod count_hyperedges;
pub(crate) mod find_hyperedges_by_weight;
pub(crate) mod get_hyperedge_vertices;
pub(crate) mod get_hyperedge_weight;
pub(crate) mod get_hyperedges_connecting;
pub(crate) mod get_hyperedges_intersections;
pub(crate) mod join_hyperedges;
pub(crate) mod remove_hyperedge;
pub(crate) mod retain_hyperedges;
pub(crate) mod reverse_hyperedge;
pub(crate) mod update_hyperedge_vertices;
pub(crate) mod update_hyperedge_weight;