Lines Matching refs:scc
42 scc = set(stack[index[v] :])
44 identified.update(scc)
45 yield scc
101 graph: Dict[str, AbstractSet[str]], scc: AbstractSet[str], start: str
112 assert start in scc, (start, scc)
113 assert scc <= graph.keys(), scc - graph.keys()
116 graph = {src: {dst for dst in dsts if dst in scc} for src, dsts in graph.items() if src in scc}