Changeset 447:3c0d39b6388c in lemon-main
- Timestamp:
- 12/12/08 22:09:29 (16 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/adaptors.h
r446 r447 2206 2206 void first(Arc& i) const { _graph->first(i); } 2207 2207 void firstIn(Arc& i, const Node& n) const { 2208 bool d ;2208 bool d = true; 2209 2209 _graph->firstInc(i, d, n); 2210 2210 while (i != INVALID && d == (*_direction)[i]) _graph->nextInc(i, d); 2211 2211 } 2212 2212 void firstOut(Arc& i, const Node& n ) const { 2213 bool d ;2213 bool d = true; 2214 2214 _graph->firstInc(i, d, n); 2215 2215 while (i != INVALID && d != (*_direction)[i]) _graph->nextInc(i, d);
Note: See TracChangeset
for help on using the changeset viewer.