This repository was archived by the owner on Apr 22, 2020. It is now read-only.
This repository was archived by the owner on Apr 22, 2020. It is now read-only.
Algorithm: Strongly Connected Components #97
Open
Description
SCC is a class algorithms for finding groups of nodes where each node is directly reachable from every other node in the group. There are several algorithms to compute the SCC. Our current implementation (still in graphtest project) implements Tarjan's SCC algorithm.
Progress
- copy implementation from graphtest-project
- implement procedure
- tests
- edge case tests
- simple benchmark
- benchmark on bigger graphs
- parallelization