Changeset 1448:0274acee0e35 in lemon-0.x
- Timestamp:
- 06/07/05 18:12:14 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1928
- Location:
- lemon
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/bits/iterable_graph_extender.h
r1435 r1448 4 4 5 5 #include <lemon/invalid.h> 6 #include <lemon/utility.h> 6 7 7 8 namespace lemon { … … 11 12 public: 12 13 14 /// Indicates that the graph is undirected. 15 16 ///\todo Better name? 17 /// 18 ///\bug Should it be here? 19 typedef False UndirTag; 20 13 21 typedef _Base Parent; 14 22 typedef IterableGraphExtender<_Base> Graph; … … 171 179 public: 172 180 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 173 190 typedef IterableGraphExtender<_Base> Parent; 174 191 typedef IterableUndirGraphExtender<_Base> Graph; -
lemon/concept/graph.h
r1435 r1448 23 23 24 24 #include <lemon/invalid.h> 25 #include <lemon/utility.h> 25 26 #include <lemon/concept/maps.h> 26 27 #include <lemon/concept_check.h> … … 44 45 public IterableGraphComponent, public MappableGraphComponent { 45 46 public: 47 ///\e 48 49 ///\todo undocumented 50 /// 51 typedef False UndirTag; 52 46 53 typedef BaseGraphComponent::Node Node; 47 54 typedef BaseGraphComponent::Edge Edge; … … 116 123 { 117 124 public: 125 ///\e 126 127 ///\todo undocumented 128 /// 129 typedef False UndirTag; 130 118 131 /// Defalult constructor. 119 132 -
lemon/concept/undir_graph.h
r1435 r1448 27 27 28 28 #include <lemon/concept/graph_component.h> 29 #include <lemon/utility.h> 29 30 30 31 namespace lemon { … … 234 235 class UndirGraph { 235 236 public: 237 ///\e 238 239 ///\todo undocumented 240 /// 241 typedef True UndirTag; 236 242 237 243 /// Type describing a node in the graph
Note: See TracChangeset
for help on using the changeset viewer.