diff -r 2de55e4f57a7 -r c46b3453455f lemon/concepts/graph_components.h --- a/lemon/concepts/graph_components.h Thu Feb 28 16:41:56 2008 +0100 +++ b/lemon/concepts/graph_components.h Thu Feb 28 17:06:02 2008 +0100 @@ -828,16 +828,16 @@ /// /// This iterator goes trough the incident arcs of a certain /// node of a graph. - typedef GraphIncIt IncArcIt; + typedef GraphIncIt IncEdgeIt; /// \brief The base node of the iterator. /// /// Gives back the base node of the iterator. - Node baseNode(const IncArcIt&) const { return INVALID; } + Node baseNode(const IncEdgeIt&) const { return INVALID; } /// \brief The running node of the iterator. /// /// Gives back the running node of the iterator. - Node runningNode(const IncArcIt&) const { return INVALID; } + Node runningNode(const IncEdgeIt&) const { return INVALID; } /// @} @@ -865,10 +865,10 @@ checkConcept, typename _Graph::EdgeIt >(); checkConcept, typename _Graph::IncArcIt>(); + typename _Graph::Node, 'u'>, typename _Graph::IncEdgeIt>(); typename _Graph::Node n; - typename _Graph::IncArcIt ueit(INVALID); + typename _Graph::IncEdgeIt ueit(INVALID); n = graph.baseNode(ueit); n = graph.runningNode(ueit); }