diff -r 5e284075b193 -r 9d0bfd35b97c doc/graphs.dox --- a/doc/graphs.dox Fri Sep 17 15:11:39 2004 +0000 +++ b/doc/graphs.dox Fri Sep 17 15:51:50 2004 +0000 @@ -9,31 +9,31 @@ Each graph should meet the -\ref hugo::skeleton::StaticGraphSkeleton "StaticGraph" concept. +\ref hugo::skeleton::StaticGraph "StaticGraph" concept. This concept does not makes it possible to change the graph (i.e. it is not possible to add or delete edges or nodes). Most of the graph algorithms will run on these graphs. The graphs meeting the -\ref hugo::skeleton::ExtendableGraphSkeleton "ExtendableGraph" +\ref hugo::skeleton::ExtendableGraph "ExtendableGraph" concept allow node and edge addition. You can also "clear" (i.e. erase all edges and nodes) such a graph. In case of graphs meeting the full feature -\ref hugo::skeleton::ErasableGraphSkeleton "ErasableGraph" +\ref hugo::skeleton::ErasableGraph "ErasableGraph" concept you can also erase individual edges and node in arbitrary order. The implemented graph structures are the following. \li \ref hugo::ListGraph "ListGraph" is the most versatile graph class. It meets -the hugo::skeleton::ErasableGraphSkeleton "ErasableGraph" concept +the hugo::skeleton::ErasableGraph "ErasableGraph" concept and it also have some convenience features. \li \ref hugo::SmartGraph "SmartGraph" is a more memory efficient version of \ref hugo::ListGraph "ListGraph". The price of it is that it only meets the -\ref hugo::skeleton::ExtendableGraphSkeleton "ExtendableGraph" concept, +\ref hugo::skeleton::ExtendableGraph "ExtendableGraph" concept, so you cannot delete individual edges or nodes. \li \ref hugo::SymListGraph "SymListGraph" and \ref hugo::SymSmartGraph "SymSmartGraph" classes are very similar to