COIN-OR::LEMON - Graph Library

Changeset 2102:eb73ab0e4c74 in lemon-0.x for lemon/bits/graph_extender.h


Ignore:
Timestamp:
06/20/06 17:20:08 (18 years ago)
Author:
athos
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2793
Message:

Slight changes in doc.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/bits/graph_extender.h

    r2098 r2102  
    190190    /// \brief Base node of the iterator
    191191    ///
    192     /// Returns the base node (ie. the source in this case) of the iterator
     192    /// Returns the base node (i.e. the source in this case) of the iterator
    193193    Node baseNode(const OutEdgeIt &e) const {
    194194      return Parent::source(e);
     
    196196    /// \brief Running node of the iterator
    197197    ///
    198     /// Returns the running node (ie. the target in this case) of the
     198    /// Returns the running node (i.e. the target in this case) of the
    199199    /// iterator
    200200    Node runningNode(const OutEdgeIt &e) const {
     
    204204    /// \brief Base node of the iterator
    205205    ///
    206     /// Returns the base node (ie. the target in this case) of the iterator
     206    /// Returns the base node (i.e. the target in this case) of the iterator
    207207    Node baseNode(const InEdgeIt &e) const {
    208208      return Parent::target(e);
     
    210210    /// \brief Running node of the iterator
    211211    ///
    212     /// Returns the running node (ie. the source in this case) of the
     212    /// Returns the running node (i.e. the source in this case) of the
    213213    /// iterator
    214214    Node runningNode(const InEdgeIt &e) const {
Note: See TracChangeset for help on using the changeset viewer.