From what I understood, vertices mentioned in unconnected_vertex_pairs, should also be present in the vertices mentioned in full_dynamic_graph_sparse. But, after running following snippet,
u_v = set(unconnected_vertex_pairs[:, 0]) | set(unconnected_vertex_pairs[:, 1])
c_v = set(full_dynamic_graph_sparse[:, 0]) | set(full_dynamic_graph_sparse[:, 1])
the output of len(u_v - c_v) is 13152. That means, 13752 vertices in the unconnected list do not appear in the full dynamic graph. I may understood it wrong, so please clarify.
From what I understood, vertices mentioned in
unconnected_vertex_pairs, should also be present in the vertices mentioned infull_dynamic_graph_sparse. But, after running following snippet,u_v = set(unconnected_vertex_pairs[:, 0]) | set(unconnected_vertex_pairs[:, 1])c_v = set(full_dynamic_graph_sparse[:, 0]) | set(full_dynamic_graph_sparse[:, 1])the output of
len(u_v - c_v)is 13152. That means, 13752 vertices in the unconnected list do not appear in the full dynamic graph. I may understood it wrong, so please clarify.