[][src]Type Definition hypergraph::WeightedHyperedgeIndex

type WeightedHyperedgeIndex = (HyperedgeIndex, usize);

Hyperedge weighted index representation as a tuple of 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 the same hyperedges - connecting the same vertices in the same order - with distinct weights (non-simple hypergraph).