prev_edges and next_edges are not set in add_edge. add_node seems to do the same as when constructing from a networkx graph, except that hyperedge nodes are not supported. This might be okay (hyperedges can be added using add_edge), but then it would make sense to check for the frame attribute in add_node.
prev_edges
andnext_edges
are not set inadd_edge
.add_node
seems to do the same as when constructing from anetworkx
graph, except that hyperedge nodes are not supported. This might be okay (hyperedges can be added usingadd_edge
), but then it would make sense to check for the frame attribute inadd_node
.