Re: [R] Kosaraju's SCC Algorithm Running

2016-11-07 Thread Bert Gunter
See here -- found by googling "recursion limits in R" http://stackoverflow.com/questions/26797537/r-programming-level-of-allowed-recursion-depth-differs-when-calling-a-local-hel -- Bert Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things into it

Re: [R] Kosaraju's SCC Algorithm Running

2016-11-07 Thread Jie C
Hi Jeff, Thanks for your reply! We are definitely not seeking for help with the assignment per se. Maybe we should have given you a simpler code to just illustrate the problem. We found this to be an interesting case for illustrating the recursion limit of R. For other languages such as Python, Ja

Re: [R] Kosaraju's SCC Algorithm Running

2016-11-06 Thread Jeff Newmiller
Please read the Posting Guide mentioned at the bottom of this and every post, which warns you that homework is off topic on this mailing list. Use the support provided by your institution of learning (Coursera in this case). -- Sent from my phone. Please excuse my brevity. On November 6, 2016 8

[R] Kosaraju's SCC Algorithm Running

2016-11-06 Thread Megan
To whom it may concerns, We encountered stack overflow issues when we implemented DFS(depth first search) algorithm on a directed graph having 800,000+ vertices and millions of edges. The purpose of running DFS is to use Kosaraju Algorithm to calculate the size of SCC(strongly connected compon