Skip to content

Minimum cutsets

2 messages · Benedict Anchang, Gábor Csárdi

#
The minCut function in RBGL package returns only a value or the minimum cut. I would be 
really greatful if any knows of any R function or package available for 
finding all minimal cut sets ( i.e., components whose failure will 
results in a network failure) between any given pair of vertices.
#
In the 'igraph' package, there are two (private) functions that can do
this. I.e. install and load igraph, and call

igraph:::find.all.min.cutsets()
or
igraph:::kCutsets()

They might be quite slow if your graph is big. Check the source code
for some comments.

Best,
Gabor

On Thu, Mar 19, 2009 at 10:58 AM, Benedict Anchang
<Benedict.Anchang at klinik.uni-regensburg.de> wrote: