Changes in / [435:30d22b636e57:434:5c69a36729cb] in lemon-1.2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/core.h
r429 r319 1171 1171 /// Construct a new ConEdgeIt iterating on the edges that 1172 1172 /// connects nodes \c u and \c v. 1173 ConEdgeIt(const Graph& g, Node u, Node v) : _graph(g) , _u(u), _v(v){1174 Parent::operator=(findEdge(_graph, _u, _v));1173 ConEdgeIt(const Graph& g, Node u, Node v) : _graph(g) { 1174 Parent::operator=(findEdge(_graph, u, v)); 1175 1175 } 1176 1176 … … 1184 1184 /// It increments the iterator and gives back the next edge. 1185 1185 ConEdgeIt& operator++() { 1186 Parent::operator=(findEdge(_graph, _u, _v, *this)); 1186 Parent::operator=(findEdge(_graph, _graph.u(*this), 1187 _graph.v(*this), *this)); 1187 1188 return *this; 1188 1189 } 1189 1190 private: 1190 1191 const Graph& _graph; 1191 Node _u, _v;1192 1192 }; 1193 1193
Note: See TracChangeset
for help on using the changeset viewer.