Changeset 1008:b7ed95cd94a3 in lemon
- Timestamp:
- 09/22/10 09:24:07 (13 years ago)
- Branch:
- 1.0
- Parents:
- 1002:66aafc8c62d6 (diff), 1007:e24922c56bc2 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Phase:
- public
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/dfs.h
r436 r1008 559 559 void start(Node t) 560 560 { 561 while ( !emptyQueue() && G->target(_stack[_stack_head])!=t)561 while ( !emptyQueue() && !(*_reached)[t] ) 562 562 processNextArc(); 563 563 } … … 1513 1513 /// with addSource() before using this function. 1514 1514 void start(Node t) { 1515 while ( !emptyQueue() && _digraph->target(_stack[_stack_head]) != t)1515 while ( !emptyQueue() && !(*_reached)[t] ) 1516 1516 processNextArc(); 1517 1517 } -
lemon/dfs.h
r1007 r1008 1414 1414 } else { 1415 1415 _visitor->leave(s); 1416 _visitor->stop(s); 1416 1417 } 1417 1418 }
Note: See TracChangeset
for help on using the changeset viewer.