lemon/graph_utils.h
changeset 2350 eb371753e814
parent 2331 e389580e3348
child 2384 805c5a2a36dd
equal deleted inserted replaced
60:a392aabfa5fb 61:9c62d6730c63
   395   /// }
   395   /// }
   396   ///\endcode
   396   ///\endcode
   397   /// 
   397   /// 
   398   ///\sa findEdge()
   398   ///\sa findEdge()
   399   ///\sa EdgeLookUp
   399   ///\sa EdgeLookUp
   400   ///\se AllEdgeLookup
   400   ///\sa AllEdgeLookup
   401   ///
   401   ///
   402   /// \author Balazs Dezso 
   402   /// \author Balazs Dezso 
   403   template <typename _Graph>
   403   template <typename _Graph>
   404   class ConEdgeIt : public _Graph::Edge {
   404   class ConEdgeIt : public _Graph::Edge {
   405   public:
   405   public:
  2659     ///Find an edge between two nodes.
  2659     ///Find an edge between two nodes.
  2660     ///\param s The source node
  2660     ///\param s The source node
  2661     ///\param t The target node
  2661     ///\param t The target node
  2662     ///\param prev The previous edge between \c s and \c t. It it is INVALID or
  2662     ///\param prev The previous edge between \c s and \c t. It it is INVALID or
  2663     ///not given, the operator finds the first appropriate edge.
  2663     ///not given, the operator finds the first appropriate edge.
  2664     ///\return An edge from \c s to \c t after \prev or
  2664     ///\return An edge from \c s to \c t after \c prev or
  2665     ///\ref INVALID if there is no more.
  2665     ///\ref INVALID if there is no more.
  2666     ///
  2666     ///
  2667     ///For example, you can count the number of edges from \c u to \c v in the
  2667     ///For example, you can count the number of edges from \c u to \c v in the
  2668     ///following way.
  2668     ///following way.
  2669     ///\code
  2669     ///\code