In the function, centrality_test, there is a line trying to get the common neighbors but is using just the set of neighbors of v `531 cn = neighbors_v & neighbors_v` Was this intentional? Or should it rather be cn = neighbors_u & neighbors_v?