Changeset 803:c3d832275e69 in lemon-0.x for src/work/klao
- Timestamp:
- 09/05/04 22:13:48 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1097
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/klao/path.h
r686 r803 304 304 /// It should be called iff the path is empty and before any call to 305 305 /// \ref pushFront() or \ref pushBack() 306 void setStart (const GraphNode &) {}306 void setStartNode(const GraphNode &) {} 307 307 308 308 ///Push a new edge to the front of the path 309 309 310 310 ///Push a new edge to the front of the path. 311 ///\sa setStart 311 ///\sa setStartNode 312 312 void pushFront(const GraphEdge& e) { 313 313 if( DM::consistensy_check && !empty() && P.gr->head(e)!=from() ) { … … 320 320 321 321 ///Push a new edge to the back of the path. 322 ///\sa setStart 322 ///\sa setStartNode 323 323 void pushBack(const GraphEdge& e) { 324 324 if( DM::consistensy_check && !empty() && P.gr->tail(e)!=to() ) { … … 345 345 // Hogy kenyelmes egy ilyet hasznalni? 346 346 347 ///Reserve storage in advance for the builder347 ///Reserve storage for the builder in advance. 348 348 349 349 ///If you know an reasonable upper bound of the number of the edges … … 665 665 /// It should be called iff the path is empty and before any call to 666 666 /// \ref pushFront() or \ref pushBack() 667 void setStart (const GraphNode &) {}667 void setStartNode(const GraphNode &) {} 668 668 669 669 ///Push a new edge to the front of the path 670 670 671 671 ///Push a new edge to the front of the path. 672 ///\sa setStart 672 ///\sa setStartNode 673 673 void pushFront(const GraphEdge& e) { 674 674 if( DM::consistensy_check && !empty() && P.gr->head(e)!=from() ) { … … 681 681 682 682 ///Push a new edge to the back of the path. 683 ///\sa setStart 683 ///\sa setStartNode 684 684 void pushBack(const GraphEdge& e) { 685 685 if( DM::consistensy_check && !empty() && P.gr->tail(e)!=to() ) { … … 706 706 // Hogy kenyelmes egy ilyet hasznalni? 707 707 708 ///Reserve storage in advance for the builder708 ///Reserve storage for the builder in advance. 709 709 710 710 ///If you know an reasonable upper bound of the number of the edges
Note: See TracChangeset
for help on using the changeset viewer.