Changeset 880:9d0bfd35b97c in lemon-0.x for doc
- Timestamp:
- 09/17/04 17:51:50 (19 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1188
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/graphs.dox
r875 r880 10 10 11 11 Each graph should meet the 12 \ref hugo::skeleton::StaticGraph Skeleton"StaticGraph" concept.12 \ref hugo::skeleton::StaticGraph "StaticGraph" concept. 13 13 This concept does not 14 14 makes it possible to change the graph (i.e. it is not possible to add … … 17 17 18 18 The graphs meeting the 19 \ref hugo::skeleton::ExtendableGraph Skeleton"ExtendableGraph"19 \ref hugo::skeleton::ExtendableGraph "ExtendableGraph" 20 20 concept allow node and 21 21 edge addition. You can also "clear" (i.e. erase all edges and nodes) … … 23 23 24 24 In case of graphs meeting the full feature 25 \ref hugo::skeleton::ErasableGraph Skeleton"ErasableGraph"25 \ref hugo::skeleton::ErasableGraph "ErasableGraph" 26 26 concept 27 27 you can also erase individual edges and node in arbitrary order. … … 29 29 The implemented graph structures are the following. 30 30 \li \ref hugo::ListGraph "ListGraph" is the most versatile graph class. It meets 31 the hugo::skeleton::ErasableGraph Skeleton"ErasableGraph" concept31 the hugo::skeleton::ErasableGraph "ErasableGraph" concept 32 32 and it also have some convenience features. 33 33 \li \ref hugo::SmartGraph "SmartGraph" is a more memory 34 34 efficient version of \ref hugo::ListGraph "ListGraph". The 35 35 price of it is that it only meets the 36 \ref hugo::skeleton::ExtendableGraph Skeleton"ExtendableGraph" concept,36 \ref hugo::skeleton::ExtendableGraph "ExtendableGraph" concept, 37 37 so you cannot delete individual edges or nodes. 38 38 \li \ref hugo::SymListGraph "SymListGraph" and
Note: See TracChangeset
for help on using the changeset viewer.