lemon/concepts/graph.h
changeset 1217 7bf489cf624e
parent 1186 2e959a5a0c2d
child 1261 97f1760dcd13
equal deleted inserted replaced
16:29cbd940c9a9 17:cb3d67099072
   755       /// (i.e. the target node of the corresponding arc).
   755       /// (i.e. the target node of the corresponding arc).
   756       Node runningNode(OutArcIt) const { return INVALID; }
   756       Node runningNode(OutArcIt) const { return INVALID; }
   757 
   757 
   758       /// \brief The base node of the iterator.
   758       /// \brief The base node of the iterator.
   759       ///
   759       ///
   760       /// Returns the base node of the given incomming arc iterator
   760       /// Returns the base node of the given incoming arc iterator
   761       /// (i.e. the target node of the corresponding arc).
   761       /// (i.e. the target node of the corresponding arc).
   762       Node baseNode(InArcIt) const { return INVALID; }
   762       Node baseNode(InArcIt) const { return INVALID; }
   763 
   763 
   764       /// \brief The running node of the iterator.
   764       /// \brief The running node of the iterator.
   765       ///
   765       ///
   766       /// Returns the running node of the given incomming arc iterator
   766       /// Returns the running node of the given incoming arc iterator
   767       /// (i.e. the source node of the corresponding arc).
   767       /// (i.e. the source node of the corresponding arc).
   768       Node runningNode(InArcIt) const { return INVALID; }
   768       Node runningNode(InArcIt) const { return INVALID; }
   769 
   769 
   770       template <typename _Graph>
   770       template <typename _Graph>
   771       struct Constraints {
   771       struct Constraints {