COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/list_graph.h

    r835 r833  
    325325  ///only in the concept class.
    326326  ///
    327   ///This class provides only linear time counting for nodes and arcs.
    328   ///
    329327  ///\sa concepts::Digraph
    330328  ///\sa ListGraph
     
    363361    ///\brief Erase a node from the digraph.
    364362    ///
    365     ///This function erases the given node along with its outgoing and
    366     ///incoming arcs from the digraph.
    367     ///
    368     ///\note All iterators referencing the removed node or the connected
    369     ///arcs are invalidated, of course.
     363    ///This function erases the given node from the digraph.
    370364    void erase(Node n) { Parent::erase(n); }
    371365
     
    373367    ///
    374368    ///This function erases the given arc from the digraph.
    375     ///
    376     ///\note All iterators referencing the removed arc are invalidated,
    377     ///of course.
    378369    void erase(Arc a) { Parent::erase(a); }
    379370
     
    520511    ///This function erases all nodes and arcs from the digraph.
    521512    ///
    522     ///\note All iterators of the digraph are invalidated, of course.
    523513    void clear() {
    524514      Parent::clear();
     
    11901180  ///only in the concept class.
    11911181  ///
    1192   ///This class provides only linear time counting for nodes, edges and arcs.
    1193   ///
    11941182  ///\sa concepts::Graph
    11951183  ///\sa ListDigraph
     
    12301218    ///\brief Erase a node from the graph.
    12311219    ///
    1232     /// This function erases the given node along with its incident arcs
    1233     /// from the graph.
    1234     ///
    1235     /// \note All iterators referencing the removed node or the incident
    1236     /// edges are invalidated, of course.
     1220    /// This function erases the given node from the graph.
    12371221    void erase(Node n) { Parent::erase(n); }
    12381222
     
    12401224    ///
    12411225    /// This function erases the given edge from the graph.
    1242     ///
    1243     /// \note All iterators referencing the removed edge are invalidated,
    1244     /// of course.
    12451226    void erase(Edge e) { Parent::erase(e); }
    12461227    /// Node validity check
     
    13321313    ///This function erases all nodes and arcs from the graph.
    13331314    ///
    1334     ///\note All iterators of the graph are invalidated, of course.
    13351315    void clear() {
    13361316      Parent::clear();
Note: See TracChangeset for help on using the changeset viewer.