Changeset 1627:3fd1ba6e9872 in lemon-0.x for lemon/graph_utils.h
- Timestamp:
- 08/11/05 17:55:17 (14 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2135
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/graph_utils.h
r1591 r1627 996 996 /// \return The "forward" directed edge view of undirected edge 997 997 Value operator[](const Key& key) const { 998 return graph. edgeWithSource(key, graph.source(key));998 return graph.direct(key, true); 999 999 } 1000 1000 … … 1036 1036 /// \return The "backward" directed edge view of undirected edge 1037 1037 Value operator[](const Key& key) const { 1038 return graph. edgeWithSource(key, graph.target(key));1038 return graph.direct(key, false); 1039 1039 } 1040 1040
Note: See TracChangeset
for help on using the changeset viewer.