Re: [R] Minimum cutsets

2011-10-15 Thread malhomidi
Thanks Gabor for the help. I'll try to do it. Regards, Mohammed -- View this message in context: http://r.789695.n4.nabble.com/Minimum-cutsets-tp885346p3907214.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.

Re: [R] Minimum cutsets

2011-10-14 Thread Gábor Csárdi
On Thu, Oct 13, 2011 at 7:47 PM, malhomidi wrote: > Hi again, > >         I've looked at the links above and I see the development version of > the igraph library. I see the src folder implemented in C. Are these source > codes available in R or I just would have to use the C code? The reason is >

Re: [R] Minimum cutsets

2011-10-14 Thread malhomidi
Hi, Thank you David and Michael for your suggestions and comments. I'll try to get the binary version of the package. I'm just waiting for Gabor to let me know about the development package which works on Windows. Regards, Mohammed -- View this message in context: http://r.789695.n4.nabble

Re: [R] Minimum cutsets

2011-10-13 Thread R. Michael Weylandt
I don't know the specifics of this package, but generally the C code is called internally by R: it, however, requires compilation before R can "talk" to it. You wont need to learn C though. Look at the link David suggested for a precompiled version, but it may be older than the development-version

Re: [R] Minimum cutsets

2011-10-13 Thread David Winsemius
On Oct 13, 2011, at 7:47 PM, malhomidi wrote: Hi again, I've looked at the links above No links visible to the rest of us non-Nabble users. When will nabble- users ever learn to include context? (or to post with new Subject: lines when the topic changes?) and I see the develop

Re: [R] Minimum cutsets

2011-10-13 Thread malhomidi
Hi again, I've looked at the links above and I see the development version of the igraph library. I see the src folder implemented in C. Are these source codes available in R or I just would have to use the C code? The reason is that I just started learning R and I really want to stay awa

Re: [R] Minimum cutsets

2011-10-12 Thread malhomidi
Hi Gabor, Thanks for the reply. I'm actually working on directed graphs and using Windows. Please, send me the windows version of the source code. Regards, Mohammed -- View this message in context: http://r.789695.n4.nabble.com/Minimum-cutsets-tp885346p3899012.html Sent from the R hel

Re: [R] Minimum cutsets

2011-10-12 Thread Gábor Csárdi
Hi Mohammed, http://igraph.sourceforge.net/doc/R/graph.maxflow.html For directed graphs, and s-t cuts you need the development version, from igraph.sf.net. The source code is either here: http://cran.r-project.org/web/packages/igraph/index.html or here: http://code.google.com/p/igraph/downloads/l

Re: [R] Minimum cutsets

2011-10-12 Thread malhomidi
Hi Gabor, I'm looking for minimum cutsets in the igraph manual but I didn't find the functions you mentioned above. Also, how can I see their source code. Thanks, Mohammed -- View this message in context: http://r.789695.n4.nabble.com/Minimum-cutsets-tp885346p3898347.html Sent from the

Re: [R] Minimum cutsets

2009-03-19 Thread Gábor Csárdi
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

[R] Minimum cutsets

2009-03-19 Thread Benedict Anchang
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.