COIN-OR::LEMON - Graph Library

Changeset 1035:f2a3426e64e6 in lemon-0.x


Ignore:
Timestamp:
12/09/04 18:02:53 (19 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1425
Message:

Make UndirListGraph? and UndirSmartGraph? visible in the doc.

Location:
src/lemon
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/lemon/list_graph.h

    r1034 r1035  
    399399    ///\warning SnapShots cannot be nested.
    400400    ///\ingroup graphs
     401    ///\todo \c SnapShot or \c Snapshot?
    401402    class SnapShot : protected AlterationObserverRegistry<Node>::ObserverBase,
    402403                     protected AlterationObserverRegistry<Edge>::ObserverBase
     
    513514    UndirGraphExtender<ListGraphBase> > > > > > > ErasableUndirListGraphBase;
    514515
     516  ///An undirected list graph class.
     517
     518  ///This is a simple and fast erasable undirected graph implementation.
     519  ///
     520  ///It conforms to the
     521  ///\ref concept::UndirGraph "UndirGraph" concept.
     522  ///
     523  ///\sa concept::UndirGraph.
     524  ///
     525  ///\todo SnapShot hasn't been implemented yet.
     526  ///
    515527  class UndirListGraph : public ErasableUndirListGraphBase {
    516528  };
  • src/lemon/smart_graph.h

    r1034 r1035  
    237237  ///\sa concept::ExtendableGraph.
    238238  ///
    239   ///\todo Some member functions could be \c static.
    240   ///
    241239  ///\author Alpar Juttner
    242240  class SmartGraph : public ClearableSmartGraphBase {
     
    359357    UndirGraphExtender<SmartGraphBase> > > > > > UndirSmartGraphBase;
    360358
     359  ///A smart undirected graph class.
     360
     361  ///This is a simple and fast undirected graph implementation.
     362  ///It is also quite memory efficient, but at the price
     363  ///that <b> it does support only limited (only stack-like)
     364  ///node and edge deletions</b>.
     365  ///Except from this it conforms to
     366  ///the \ref concept::UndirGraph "UndirGraph" concept.
     367  ///\sa concept::UndirGraph.
     368  ///
     369  ///\todo SnapShot hasn't been implemented yet.
     370  ///
    361371  class UndirSmartGraph : public UndirSmartGraphBase {
    362372  };
Note: See TracChangeset for help on using the changeset viewer.