COIN-OR::LEMON - Graph Library

Changeset 181:e34570db81ea in lemon-1.2 for lemon


Ignore:
Timestamp:
06/18/08 14:07:18 (16 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
default
Phase:
public
Message:

Doc improvements in LgfContents?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/lgf_reader.h

    r180 r181  
    21952195    /// @}
    21962196
    2197     /// \name Arc sections
     2197    /// \name Arc/Edge sections
    21982198    /// @{
    21992199
    2200     /// \brief Gives back the number of arc sections in the file.
    2201     ///
    2202     /// Gives back the number of arc sections in the file.
    2203     /// \note It is synonim of \c edgeSectionNum().
     2200    /// \brief Gives back the number of arc/edge sections in the file.
     2201    ///
     2202    /// Gives back the number of arc/edge sections in the file.
     2203    /// \note It is synonym of \c edgeSectionNum().
    22042204    int arcSectionNum() const {
    22052205      return _edge_sections.size();
     
    22092209    ///
    22102210    /// Returns the section name at the given position.
    2211     /// \note It is synonim of \c edgeSection().
     2211    /// \note It is synonym of \c edgeSection().
    22122212    const std::string& arcSection(int i) const {
    22132213      return _edge_sections[i];
    22142214    }
    22152215
    2216     /// \brief Gives back the arc maps for the given section.
    2217     ///
    2218     /// Gives back the arc maps for the given section.
    2219     /// \note It is synonim of \c edgeMaps().
     2216    /// \brief Gives back the arc/edge maps for the given section.
     2217    ///
     2218    /// Gives back the arc/edge maps for the given section.
     2219    /// \note It is synonym of \c edgeMaps().
    22202220    const std::vector<std::string>& arcMaps(int i) const {
    22212221      return _edge_maps[i];
     
    22242224    /// @}
    22252225
    2226     /// \name Edge sections   
     2226    /// \name Synonyms
    22272227    /// @{
    22282228
    2229     /// \brief Gives back the number of edge sections in the file.
    2230     ///
    2231     /// Gives back the number of edge sections in the file.
     2229    /// \brief Gives back the number of arc/edge sections in the file.
     2230    ///
     2231    /// Gives back the number of arc/edge sections in the file.
     2232    /// \note It is synonym of \c arcSectionNum().
    22322233    int edgeSectionNum() const {
    22332234      return _edge_sections.size();
     
    22372238    ///
    22382239    /// Returns the section name at the given position.
     2240    /// \note It is synonym of \c arcSection().
    22392241    const std::string& edgeSection(int i) const {
    22402242      return _edge_sections[i];
     
    22442246    ///
    22452247    /// Gives back the edge maps for the given section.
     2248    /// \note It is synonym of \c arcMaps().
    22462249    const std::vector<std::string>& edgeMaps(int i) const {
    22472250      return _edge_maps[i];
Note: See TracChangeset for help on using the changeset viewer.