Changeset 534:6d3a9eec82b4 in lemon-main
- Timestamp:
- 02/23/09 16:04:10 (16 years ago)
- Branch:
- default
- Parents:
- 533:6643fc6dafc1 (diff), 503:9605e051942f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Phase:
- public
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/concepts/graph_components.h
r503 r534 22 22 23 23 24 #ifndef LEMON_CONCEPT _GRAPH_COMPONENTS_H25 #define LEMON_CONCEPT _GRAPH_COMPONENTS_H24 #ifndef LEMON_CONCEPTS_GRAPH_COMPONENTS_H 25 #define LEMON_CONCEPTS_GRAPH_COMPONENTS_H 26 26 27 27 #include <lemon/core.h> -
lemon/concepts/graph_components.h
r529 r534 115 115 /// 116 116 /// This class provides the minimal set of features needed for a 117 /// directed graph structure. All digraph concepts have to be117 /// directed graph structure. All digraph concepts have to 118 118 /// conform to this base directed graph. It just provides types 119 119 /// for nodes and arcs and functions to get the source and the … … 180 180 /// This class provides the minimal set of features needed for an 181 181 /// undirected graph structure. All undirected graph concepts have 182 /// to beconform to this base graph. It just provides types for182 /// to conform to this base graph. It just provides types for 183 183 /// nodes, arcs and edges and functions to get the 184 184 /// source and the target of the arcs and edges, … … 295 295 /// This class provides beside the core digraph features 296 296 /// core id functions for the digraph structure. 297 /// The most of the base digraphs should beconform to this concept.297 /// The most of the base digraphs should conform to this concept. 298 298 /// The id's are unique and immutable. 299 299 template <typename _Base = BaseDigraphComponent> … … 373 373 /// This class provides beside the core undirected graph features 374 374 /// core id functions for the undirected graph structure. The 375 /// most of the base undirected graphs should beconform to this375 /// most of the base undirected graphs should conform to this 376 376 /// concept. The id's are unique and immutable. 377 377 template <typename _Base = BaseGraphComponent>
Note: See TracChangeset
for help on using the changeset viewer.