COIN-OR::LEMON - Graph Library

Changeset 1935:67b38d699ea7 in lemon-0.x


Ignore:
Timestamp:
01/31/06 21:16:53 (18 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2510
Message:

Spellcheck

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/graph_reader.h

    r1909 r1935  
    317317    ///
    318318    /// It reads an label from the stream and gives back which node belongs to
    319     /// it. It is possible only if there was read an "label" named node map.
     319    /// it. It is possible only if there was read a "label" named node map.
    320320    void readLabel(std::istream& is, Node& node) const {
    321321      nodeset_reader.readLabel(is, node);
     
    325325    ///
    326326    /// It reads an label from the stream and gives back which edge belongs to
    327     /// it. It is possible only if there was read an "label" named edge map.
     327    /// it. It is possible only if there was read a "label" named edge map.
    328328    void readLabel(std::istream& is, Edge& edge) const {
    329329      return edgeset_reader.readLabel(is, edge);
     
    723723    ///
    724724    /// It reads an label from the stream and gives back which node belongs to
    725     /// it. It is possible only if there was read an "label" named node map.
     725    /// it. It is possible only if there was read a "label" named node map.
    726726    void readLabel(std::istream& is, Node& node) const {
    727727      return nodeset_reader.readLabel(is, node);
    728728    }
    729729
    730     /// \brief Gives back the edge by its label.
     730    /// \brief Gives back the edge by its label
    731731    ///
    732732    /// It reads an label from the stream and gives back which edge belongs to
    733     /// it. It is possible only if there was read an "label" named edge map.
     733    /// it. It is possible only if there was read a "label" named edge map.
    734734    void readLabel(std::istream& is, Edge& edge) const {
    735735      return u_edgeset_reader.readLabel(is, edge);
     
    739739    ///
    740740    /// It reads an label from the stream and gives back which undirected edge
    741     /// belongs to it. It is possible only if there was read an "label" named
     741    /// belongs to it. It is possible only if there was read a "label" named
    742742    /// edge map.
    743743    void readLabel(std::istream& is, UEdge& uedge) const {
Note: See TracChangeset for help on using the changeset viewer.