COIN-OR::LEMON - Graph Library

Changeset 234:ad6b8c47bd56 in lemon-1.2 for lemon


Ignore:
Timestamp:
07/28/08 09:29:30 (16 years ago)
Author:
Balazs Dezso <deba@…>
Branch:
default
Children:
235:b46d2787e9c2, 236:da953e387d31, 237:9c8efad5f587
Phase:
public
Message:

Erase in the documentation of list graphs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/list_graph.h

    r220 r234  
    364364    }
    365365
     366    ///\brief Erase a node from the digraph.
     367    ///
     368    ///Erase a node from the digraph.
     369    ///
     370    void erase(const Node& n) { Parent::erase(n); }
     371
     372    ///\brief Erase an arc from the digraph.
     373    ///
     374    ///Erase an arc from the digraph.
     375    ///
     376    void erase(const Arc& a) { Parent::erase(a); }
     377
    366378    /// Node validity check
    367379
     
    12081220      return Parent::addEdge(s, t);
    12091221    }
     1222
     1223    /// \brief Erase a node from the graph.
     1224    ///
     1225    /// Erase a node from the graph.
     1226    ///
     1227    void erase(const Node& n) { Parent::erase(n); }
     1228
     1229    /// \brief Erase an edge from the graph.
     1230    ///
     1231    /// Erase an edge from the graph.
     1232    ///
     1233    void erase(const Edge& e) { Parent::erase(e); }
    12101234    /// Node validity check
    12111235
Note: See TracChangeset for help on using the changeset viewer.