Hello,
I have a directed cyclic graph with more than one cycle in it and I need a way to detect (and list) each cycle present in the digraph.
The graph can be seen here: http://img412.imageshack.us/img412/3327/schematic.gif
This is a dummy graph put together for the sake of debugging my python script. It contains the cycles: [n13, n14], [n6, n8, n15, n16, n7], [n6, n8, n9, n7].
The algorithm must detect every cycle in the digraph, not just the smallest nor the first it encounters.
Thank you,
R