COIN-OR::LEMON - Graph Library

Changeset 1448:0274acee0e35 in lemon-0.x for lemon/bits


Ignore:
Timestamp:
06/07/05 18:12:14 (19 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1928
Message:

UndirTag? added to the graphs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/bits/iterable_graph_extender.h

    r1435 r1448  
    44
    55#include <lemon/invalid.h>
     6#include <lemon/utility.h>
    67
    78namespace lemon {
     
    1112  public:
    1213
     14    /// Indicates that the graph is undirected.
     15
     16    ///\todo Better name?
     17    ///
     18    ///\bug Should it be here?
     19    typedef False UndirTag;
     20
    1321    typedef _Base Parent;
    1422    typedef IterableGraphExtender<_Base> Graph;
     
    171179  public:
    172180
     181    /// Indicates that the graph is undirected.
     182
     183    ///\todo Better name?
     184    ///
     185    ///\bug Should it be here?
     186    ///\bug Should be tested in the concept checker whether it is defined
     187    ///correctly.
     188    typedef True UndirTag;
     189
    173190    typedef IterableGraphExtender<_Base> Parent;
    174191    typedef IterableUndirGraphExtender<_Base> Graph;
Note: See TracChangeset for help on using the changeset viewer.