SCC algorithm query

Hi,
In SCC algorithms, after run to find SCC, it will run to find WCC, I don’t know why we need WCC here?

Hi,
Logically every SCC community also qualifies as a WCC community (or the subset of a WCC community, to be more clear). We found that the most efficient way to commute SCC is to do some filtering to first find WCC, and the prune to get to SCC. So, WCC is a side effect of the SCC calculation.

We realize the output and workflow could be clearer. We can improve the documentation, and we are working on improving the input parameters and output options.