Some time ago I read about the general mininum cut algorithm that takes as input a graph and removes a min. number of edges such that two disconnected components remain.
I am now working on an undirected graph with 10k+ nodes and 500k+ edges (no multiple edges between two vertices). To attribute interactions between nodes I thought about computing the minimum cut disconnecting two given vertices (or flow-related measures).
Are there efficient algorithms to come up with a value (cardinality of the min. cut set) for every pair of vertices in the graph? Being rather new to the topic, I would be deeply grateful if anyone could provide links to papers or other resources outlining algorithms which operate at a reasonable run-time complexity.
Thanks!