Changeset 873:f3a30fda2e49 in lemon-0.x for doc/graphs.dox
- Timestamp:
- 09/16/04 21:23:41 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1175
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/graphs.dox
r808 r873 9 9 10 10 11 Each graph should meet the \ref ConstGraph concept. This concept does 11 Each graph should meet the 12 \ref hugo::skeleton::StaticGraphSkeleton "StaticGraph" concept. 13 This concept does not 12 14 makes it possible to change the graph (i.e. it is not possible to add 13 15 or delete edges or nodes). Most of the graph algorithms will run on 14 16 these graphs. 15 17 16 The graphs meeting the \ref ExtendableGraph concept allow node and 18 The graphs meeting the 19 \ref hugo::skeleton::ExtendableGraphSkeleton "ExtendableGraph" 20 concept allow node and 17 21 edge addition. You can also "clear" (i.e. erase all edges and nodes) 18 22 such a graph. 19 23 20 In case of graphs meeting the full feature \ref ErasableGraph concept 24 In case of graphs meeting the full feature 25 \ref hugo::skeleton::ErasableGraphSkeleton "ErasableGraph" 26 concept 21 27 you can also erase individual edges and node in arbitrary order. 22 28 23 29 The implemented graph structures are the following. 24 30 \li \ref hugo::ListGraph "ListGraph" is the most versatile graph class. It meets 25 the ErasableGraph concept and it also have some convenience features. 31 the hugo::skeleton::ErasableGraphSkeleton "ErasableGraph" concept 32 and it also have some convenience features. 26 33 \li \ref hugo::SmartGraph "SmartGraph" is a more memory 27 34 efficient version of \ref hugo::ListGraph "ListGraph". The 28 price of it is that it only meets the \ref ExtendableGraph concept, 35 price of it is that it only meets the 36 \ref hugo::skeleton::ExtendableGraphSkeleton "ExtendableGraph" concept, 29 37 so you cannot delete individual edges or nodes. 30 38 \li \ref hugo::SymListGraph "SymListGraph" and … … 47 55 can be used as a base class of \ref hugo::EdgeSet "EdgeSet". 48 56 \li \ref hugo::EdgeSet "EdgeSet" can be used to create a new graph on 49 the edge set of another graph. The base graph can be an arbitrary graph and it57 the node set of another graph. The base graph can be an arbitrary graph and it 50 58 is possible to attach several \ref hugo::EdgeSet "EdgeSet"'s to a base graph. 51 59 … … 53 61 \todo Some cross-refs are wrong. 54 62 55 \bug This file must be updated accordig to the new st ile iterators.63 \bug This file must be updated accordig to the new style iterators. 56 64 57 65 The graph structures itself can not store data attached … … 59 67 \ref maps "map classes" 60 68 to dynamically attach data the to graph components. 61 62 63 64 69 65 70 The following program demonstrates the basic features of HugoLib's graph … … 191 196 \endcode 192 197 193 In generic graph optimization programminggraphs are not containers rather198 As we mentioned above, graphs are not containers rather 194 199 incidence structures which are iterable in many ways. HugoLib introduces 195 200 concepts that allow us to attach containers to graphs. These containers are
Note: See TracChangeset
for help on using the changeset viewer.