Caeph
Results
2
comments of
Caeph
Thank you for such a quick response! I only encountered a measurable leak on a graph with ~200 000 vertices. When I was running the program on smaller graphs (up...
I am using Ubuntu 20.04. The code: ``` def process(G): G.vs["orig_id_graph"] = [x.index for x in G.vs] scc = G.clusters(mode="strong") sizes = np.array(scc.sizes()) big_scc = set(np.where(sizes > 1)[0]) condensed =...