COIN-OR::LEMON - Graph Library

Changeset 1196:4441b066368c in lemon


Ignore:
Timestamp:
01/11/12 22:58:05 (12 years ago)
Author:
Balazs Dezso <deba@…>
Branch:
default
Phase:
public
Message:

Doc fix in BpGraphs? (#69)

Location:
lemon/concepts
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • lemon/concepts/bpgraph.h

    r1195 r1196  
    775775      /// \brief Converts the node to red node object.
    776776      ///
    777       /// This class is converts unsafely the node to red node
     777      /// This function converts unsafely the node to red node
    778778      /// object. It should be called only if the node is from the red
    779779      /// partition or INVALID.
     
    782782      /// \brief Converts the node to blue node object.
    783783      ///
    784       /// This class is converts unsafely the node to blue node
     784      /// This function converts unsafely the node to blue node
    785785      /// object. It should be called only if the node is from the red
    786786      /// partition or INVALID.
     
    789789      /// \brief Converts the node to red node object.
    790790      ///
    791       /// This class is converts safely the node to red node
     791      /// This function converts safely the node to red node
    792792      /// object. If the node is not from the red partition, then it
    793793      /// returns INVALID.
     
    796796      /// \brief Converts the node to blue node object.
    797797      ///
    798       /// This class is converts unsafely the node to blue node
     798      /// This function converts unsafely the node to blue node
    799799      /// object. If the node is not from the blue partition, then it
    800800      /// returns INVALID.
  • lemon/concepts/graph_components.h

    r1195 r1196  
    319319      ///
    320320      /// This class represents the red nodes of the graph. The red
    321       /// nodes can be used also as normal nodes.
     321      /// nodes can also be used as normal nodes.
    322322      class RedNode : public Node {
    323323        typedef Node Parent;
     
    348348      ///
    349349      /// This class represents the blue nodes of the graph. The blue
    350       /// nodes can be used also as normal nodes.
     350      /// nodes can also be used as normal nodes.
    351351      class BlueNode : public Node {
    352352        typedef Node Parent;
     
    403403      /// \brief Converts the node to red node object.
    404404      ///
    405       /// This class is converts unsafely the node to red node
     405      /// This function converts unsafely the node to red node
    406406      /// object. It should be called only if the node is from the red
    407407      /// partition or INVALID.
     
    410410      /// \brief Converts the node to blue node object.
    411411      ///
    412       /// This class is converts unsafely the node to blue node
     412      /// This function converts unsafely the node to blue node
    413413      /// object. It should be called only if the node is from the red
    414414      /// partition or INVALID.
     
    417417      /// \brief Converts the node to red node object.
    418418      ///
    419       /// This class is converts safely the node to red node
     419      /// This function converts safely the node to red node
    420420      /// object. If the node is not from the red partition, then it
    421421      /// returns INVALID.
     
    424424      /// \brief Converts the node to blue node object.
    425425      ///
    426       /// This class is converts unsafely the node to blue node
     426      /// This function converts unsafely the node to blue node
    427427      /// object. If the node is not from the blue partition, then it
    428428      /// returns INVALID.
Note: See TracChangeset for help on using the changeset viewer.