You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Added generic hypergraph class aliases:
- Directional: undirected_hypergraph, bf_directed_hypergraph
- Implementation: list_hypergraph, flat_list_hypergraph, matrix_hypergraph, flat_matrix_hypergraph
- Renamed the order and size methods of the hypergraph class to n_vertices and n_hyperedges (Least Astonishment)
- Renamed the tail/head collection getters:
- Descriptor collections: tail_vertices, head_vertices to tail, head
- ID collections: tail_vertex_ids, head_vertex_ids to tail_ids, head_ids
- Removed the get_ prefixes from hypergraph class getter methods
- Added new vertex_unchecked and hyperedge_unchecked methods
- Defined the vertex_t and hyperedge_t element tag types
- Implemented convenience element accessors in the hypergraph class: at(<tag>, id) and operator[](<tag>, id)
- Extended hyperedge descriptor class with operator* and operator-> property accessors
0 commit comments