COIN-OR::LEMON - Graph Library

Changeset 182:9c6dfb5141d3 in lemon-1.2 for lemon


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

*Maps() -> *MapNames?() in LgfContents?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/lgf_reader.h

    r181 r182  
    21892189    ///
    21902190    /// Gives back the node maps for the given section.
    2191     const std::vector<std::string>& nodeMaps(int i) const {
     2191    const std::vector<std::string>& nodeMapNames(int i) const {
    21922192      return _node_maps[i];
    21932193    }
     
    22172217    ///
    22182218    /// Gives back the arc/edge maps for the given section.
    2219     /// \note It is synonym of \c edgeMaps().
    2220     const std::vector<std::string>& arcMaps(int i) const {
     2219    /// \note It is synonym of \c edgeMapNames().
     2220    const std::vector<std::string>& arcMapNames(int i) const {
    22212221      return _edge_maps[i];
    22222222    }
     
    22462246    ///
    22472247    /// Gives back the edge maps for the given section.
    2248     /// \note It is synonym of \c arcMaps().
    2249     const std::vector<std::string>& edgeMaps(int i) const {
     2248    /// \note It is synonym of \c arcMapNames().
     2249    const std::vector<std::string>& edgeMapNames(int i) const {
    22502250      return _edge_maps[i];
    22512251    }
     
    22662266    ///
    22672267    /// Returns the section name at the given position.
    2268     const std::string& attributeSection(int i) const {
     2268    const std::string& attributeSectionNames(int i) const {
    22692269      return _attribute_sections[i];
    22702270    }
Note: See TracChangeset for help on using the changeset viewer.