Content deleted Content added
Link other algorithms |
m Always v.lowlink=min(v.lowlink, v'.lowlink) and never min(v.lowlink, v'.index) |
||
Line 27:
v.lowlink = min(v.lowlink, v'.lowlink)
elseif (v' in S) // Is v' on the stack?
v.lowlink = min(v.lowlink, v'.
if (v.lowlink == v.index) // Is v the root of an SCC?
print "SCC:"
|