bipartite_matching
bipartite_matching copied to clipboard
Enumerate all maximum matchings in bipartite graph in Python
Results
1
bipartite_matching issues
Sort by
recently updated
recently updated
newest added
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.