Changeset 1946:17eb3eaad9f8 in lemon-0.x for lemon/graph_utils.h
- Timestamp:
- 02/02/06 18:43:24 (15 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2521
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/graph_utils.h
r1931 r1946 259 259 /// 260 260 /// Thus you can iterate through each edge from \c u to \c v as it follows. 261 /// 261 ///\code 262 262 /// for(Edge e=findEdge(g,u,v);e!=INVALID;e=findEdge(g,u,v,e)) { 263 263 /// ... 264 264 /// } 265 /// 265 ///\endcode 266 266 // /// \todo We may want to use the "GraphBase" 267 267 // /// interface here... … … 279 279 /// higher level interface for the findEdge() function. You can 280 280 /// use it the following way: 281 /// 281 ///\code 282 282 /// for (ConEdgeIt<Graph> it(g, src, trg); it != INVALID; ++it) { 283 283 /// ... 284 284 /// } 285 /// 285 ///\endcode 286 286 /// 287 287 /// \author Balazs Dezso … … 361 361 /// 362 362 /// Thus you can iterate through each edge from \c u to \c v as it follows. 363 /// 363 ///\code 364 364 /// for(UEdge e = findUEdge(g,u,v); e != INVALID; 365 365 /// e = findUEdge(g,u,v,e)) { 366 366 /// ... 367 367 /// } 368 /// 368 ///\endcode 369 369 // /// \todo We may want to use the "GraphBase" 370 370 // /// interface here... … … 383 383 /// higher level interface for the findUEdge() function. You can 384 384 /// use it the following way: 385 /// 385 ///\code 386 386 /// for (ConUEdgeIt<Graph> it(g, src, trg); it != INVALID; ++it) { 387 387 /// ... 388 388 /// } 389 /// 389 ///\endcode 390 390 /// 391 391 /// \author Balazs Dezso … … 581 581 /// The usage of the function: 582 582 /// 583 /// 583 ///\code 584 584 /// copyGraph(trg, src).nodeRef(nr).edgeCrossRef(ecr); 585 /// 585 ///\endcode 586 586 /// 587 587 /// After the copy the \c nr map will contain the mapping from the … … 793 793 /// The usage of the function: 794 794 /// 795 /// 795 ///\code 796 796 /// copyGraph(trg, src).nodeRef(nr).edgeCrossRef(ecr); 797 /// 797 ///\endcode 798 798 /// 799 799 /// After the copy the \c nr map will contain the mapping from the
Note: See TracChangeset
for help on using the changeset viewer.