In the context of boost-graph, i am using undirected_dfs to find the cycles of the undirected graph. It works well and fast.
Unfortunately, undirected_dfs does not provide the cycles based on the "basic cycles".
In the example below, the 2 basic cycles found are {0,1,3,2,0} and {3,2,4,5,3}.
But the big cycle {0,1,3,5,4,2,0} is not found.
Is there an algo to find the biggest cycles of the undirected graph ?
Thanks
Remark: The graph contains less than 100 nodes. My problem is certainly small enough even for my "old" PC.