Changeset 438:0f2091856dab in lemon
- Timestamp:
- 12/05/08 11:38:32 (16 years ago)
- Branch:
- default
- Parents:
- 437:6a2a33ad261b (diff), 435:9afe81e4c543 (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
r435 r438 1627 1627 /// \pre Either \ref run(Node) "run()" or \ref init() 1628 1628 /// must be called before using this function. 1629 bool reached(Node v) { return (*_reached)[v]; }1629 bool reached(Node v) const { return (*_reached)[v]; } 1630 1630 1631 1631 ///@} -
lemon/dfs.h
r437 r438 1411 1411 } else { 1412 1412 _visitor->leave(s); 1413 _visitor->stop(s); 1413 1414 } 1414 1415 }
Note: See TracChangeset
for help on using the changeset viewer.