Changeset 1564:16d316199cf6 in lemon-0.x
- Timestamp:
- 07/18/05 17:05:50 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2063
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/bits/iterable_graph_extender.h
r1448 r1564 125 125 /// \todo Document in the concept! 126 126 Node baseNode(const OutEdgeIt &e) const { 127 return source(e);127 return Parent::source((Edge)e); 128 128 } 129 129 /// Running node of the iterator … … 134 134 /// \todo Document in the concept! 135 135 Node runningNode(const OutEdgeIt &e) const { 136 return target(e);136 return Parent::target((Edge)e); 137 137 } 138 138 … … 143 143 /// \todo Document in the concept! 144 144 Node baseNode(const InEdgeIt &e) const { 145 return target(e);145 return Parent::target((Edge)e); 146 146 } 147 147 /// Running node of the iterator … … 152 152 /// \todo Document in the concept! 153 153 Node runningNode(const InEdgeIt &e) const { 154 return source(e);154 return Parent::source((Edge)e); 155 155 } 156 156
Note: See TracChangeset
for help on using the changeset viewer.