Changeset 1028:4441b066368c in lemon-main
- Timestamp:
- 01/11/12 22:58:05 (13 years ago)
- Branch:
- default
- Phase:
- public
- Location:
- lemon/concepts
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/concepts/bpgraph.h
r1027 r1028 775 775 /// \brief Converts the node to red node object. 776 776 /// 777 /// This class isconverts unsafely the node to red node777 /// This function converts unsafely the node to red node 778 778 /// object. It should be called only if the node is from the red 779 779 /// partition or INVALID. … … 782 782 /// \brief Converts the node to blue node object. 783 783 /// 784 /// This class isconverts unsafely the node to blue node784 /// This function converts unsafely the node to blue node 785 785 /// object. It should be called only if the node is from the red 786 786 /// partition or INVALID. … … 789 789 /// \brief Converts the node to red node object. 790 790 /// 791 /// This class isconverts safely the node to red node791 /// This function converts safely the node to red node 792 792 /// object. If the node is not from the red partition, then it 793 793 /// returns INVALID. … … 796 796 /// \brief Converts the node to blue node object. 797 797 /// 798 /// This class isconverts unsafely the node to blue node798 /// This function converts unsafely the node to blue node 799 799 /// object. If the node is not from the blue partition, then it 800 800 /// returns INVALID. -
lemon/concepts/graph_components.h
r1027 r1028 319 319 /// 320 320 /// This class represents the red nodes of the graph. The red 321 /// nodes can be used alsoas normal nodes.321 /// nodes can also be used as normal nodes. 322 322 class RedNode : public Node { 323 323 typedef Node Parent; … … 348 348 /// 349 349 /// This class represents the blue nodes of the graph. The blue 350 /// nodes can be used alsoas normal nodes.350 /// nodes can also be used as normal nodes. 351 351 class BlueNode : public Node { 352 352 typedef Node Parent; … … 403 403 /// \brief Converts the node to red node object. 404 404 /// 405 /// This class isconverts unsafely the node to red node405 /// This function converts unsafely the node to red node 406 406 /// object. It should be called only if the node is from the red 407 407 /// partition or INVALID. … … 410 410 /// \brief Converts the node to blue node object. 411 411 /// 412 /// This class isconverts unsafely the node to blue node412 /// This function converts unsafely the node to blue node 413 413 /// object. It should be called only if the node is from the red 414 414 /// partition or INVALID. … … 417 417 /// \brief Converts the node to red node object. 418 418 /// 419 /// This class isconverts safely the node to red node419 /// This function converts safely the node to red node 420 420 /// object. If the node is not from the red partition, then it 421 421 /// returns INVALID. … … 424 424 /// \brief Converts the node to blue node object. 425 425 /// 426 /// This class isconverts unsafely the node to blue node426 /// This function converts unsafely the node to blue node 427 427 /// object. If the node is not from the blue partition, then it 428 428 /// returns INVALID.
Note: See TracChangeset
for help on using the changeset viewer.