COIN-OR::LEMON - Graph Library

Changeset 1631:e15162d8eca1 in lemon-0.x for lemon/smart_graph.h


Ignore:
Timestamp:
08/16/05 21:06:59 (19 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2139
Message:

Fixed most (but not all) of Doxygen warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/smart_graph.h

    r1537 r1631  
    9090    /// Maximum node ID.
    9191    ///\sa id(Node)
    92     int maxId(Node = INVALID) const { return nodes.size()-1; }
     92    int maxId(Node) const { return nodes.size()-1; }
    9393    /// Maximum edge ID.
    9494   
    9595    /// Maximum edge ID.
    9696    ///\sa id(Edge)
    97     int maxId(Edge = INVALID) const { return edges.size()-1; }
     97    int maxId(Edge) const { return edges.size()-1; }
    9898
    9999    Node source(Edge e) const { return edges[e.n].source; }
     
    103103   
    104104    /// The ID of a valid Node is a nonnegative integer not greater than
    105     /// \ref maxNodeId(). The range of the ID's is not surely continuous
    106     /// and the greatest node ID can be actually less then \ref maxNodeId().
     105    /// \ref maxId(Node). The range of the ID's is not surely continuous
     106    /// and the greatest node ID can be actually less then \ref maxId(Node).
    107107    ///
    108108    /// The ID of the \ref INVALID node is -1.
     
    112112   
    113113    /// The ID of a valid Edge is a nonnegative integer not greater than
    114     /// \ref maxEdgeId(). The range of the ID's is not surely continuous
    115     /// and the greatest edge ID can be actually less then \ref maxEdgeId().
     114    /// \ref maxId(Edge). The range of the ID's is not surely continuous
     115    /// and the greatest edge ID can be actually less then \ref maxId(Edge).
    116116    ///
    117117    /// The ID of the \ref INVALID edge is -1.
Note: See TracChangeset for help on using the changeset viewer.