diff -r da142c310d02 -r 4274224f8a7d doc/graphs.dox --- a/doc/graphs.dox Tue Oct 24 16:49:41 2006 +0000 +++ b/doc/graphs.dox Tue Oct 24 17:19:16 2006 +0000 @@ -11,29 +11,29 @@ functionalities to list the nodes and the edges of the graph as well as incoming and outgoing edges of a given node. -Each graph should meet the \ref lemon::concept::Graph "Graph" concept. +Each graph should meet the \ref lemon::concepts::Graph "Graph" concept. This concept does not make 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. In case of graphs meeting the full feature -\ref lemon::concept::ErasableGraph "ErasableGraph" +\ref lemon::concepts::ErasableGraph "ErasableGraph" concept you can also erase individual edges and nodes in arbitrary order. The implemented graph structures are the following. \li \ref lemon::ListGraph "ListGraph" is the most versatile graph class. It meets -the \ref lemon::concept::ErasableGraph "ErasableGraph" concept +the \ref lemon::concepts::ErasableGraph "ErasableGraph" concept and it also has some convenient extra features. \li \ref lemon::SmartGraph "SmartGraph" is a more memory efficient version of \ref lemon::ListGraph "ListGraph". The price of this is that it only meets the -\ref lemon::concept::ExtendableGraph "ExtendableGraph" concept, +\ref lemon::concepts::ExtendableGraph "ExtendableGraph" concept, so you cannot delete individual edges or nodes. \li \ref lemon::FullGraph "FullGraph" implements a complete graph. It is a -\ref lemon::concept::Graph "Graph", so you cannot +\ref lemon::concepts::Graph "Graph", so you cannot change the number of nodes once it is constructed. It is extremely memory efficient: it uses constant amount of memory independently from the number of the nodes of the graph. Of course, the size of the \ref maps-page "NodeMap"'s and