lemon/bits/graph_extender.h
changeset 2102 eb73ab0e4c74
parent 2098 12f67fa3df7d
child 2115 4cd528a30ec1
equal deleted inserted replaced
17:48a90468919f 18:9a875cd4c2d9
   187 
   187 
   188     };
   188     };
   189 
   189 
   190     /// \brief Base node of the iterator
   190     /// \brief Base node of the iterator
   191     ///
   191     ///
   192     /// Returns the base node (ie. the source in this case) of the iterator
   192     /// Returns the base node (i.e. the source in this case) of the iterator
   193     Node baseNode(const OutEdgeIt &e) const {
   193     Node baseNode(const OutEdgeIt &e) const {
   194       return Parent::source(e);
   194       return Parent::source(e);
   195     }
   195     }
   196     /// \brief Running node of the iterator
   196     /// \brief Running node of the iterator
   197     ///
   197     ///
   198     /// Returns the running node (ie. the target in this case) of the
   198     /// Returns the running node (i.e. the target in this case) of the
   199     /// iterator
   199     /// iterator
   200     Node runningNode(const OutEdgeIt &e) const {
   200     Node runningNode(const OutEdgeIt &e) const {
   201       return Parent::target(e);
   201       return Parent::target(e);
   202     }
   202     }
   203 
   203 
   204     /// \brief Base node of the iterator
   204     /// \brief Base node of the iterator
   205     ///
   205     ///
   206     /// Returns the base node (ie. the target in this case) of the iterator
   206     /// Returns the base node (i.e. the target in this case) of the iterator
   207     Node baseNode(const InEdgeIt &e) const {
   207     Node baseNode(const InEdgeIt &e) const {
   208       return Parent::target(e);
   208       return Parent::target(e);
   209     }
   209     }
   210     /// \brief Running node of the iterator
   210     /// \brief Running node of the iterator
   211     ///
   211     ///
   212     /// Returns the running node (ie. the source in this case) of the
   212     /// Returns the running node (i.e. the source in this case) of the
   213     /// iterator
   213     /// iterator
   214     Node runningNode(const InEdgeIt &e) const {
   214     Node runningNode(const InEdgeIt &e) const {
   215       return Parent::source(e);
   215       return Parent::source(e);
   216     }
   216     }
   217 
   217