bipartite_matching
bipartite_matching copied to clipboard
Small efficiency issue
Hi, Why do you use list(nx.simple_cycles(d))? Since you are interested only in one cycle, using something like next(nx.simple_cycles(d)) will save tones of time.