Type Definition hypergraph::WeightedHyperedgeIndex[][src]

type WeightedHyperedgeIndex = [usize; 2];
Expand description

Hyperedge weighted index representation as an array of two usize. The first element is the index of the hyperedge. The second element is the distinct index representing one of its weight. E.g. [0, 0] and [0, 1] are two hyperedges - connecting the same vertices in the same order - with distinct weights (non-simple hypergraph).