diff -r 75f749682240 -r c80ef5912903 src/lemon/dijkstra.h --- a/src/lemon/dijkstra.h Thu Nov 04 18:52:31 2004 +0000 +++ b/src/lemon/dijkstra.h Thu Nov 04 20:24:59 2004 +0000 @@ -33,11 +33,11 @@ ///This class provides an efficient implementation of %Dijkstra algorithm. ///The edge lengths are passed to the algorithm using a - ///\ref skeleton::ReadMap "ReadMap", + ///\ref concept::ReadMap "ReadMap", ///so it is easy to change it to any kind of length. /// ///The type of the length is determined by the - ///\ref skeleton::ReadMap::ValueType "ValueType" of the length map. + ///\ref concept::ReadMap::ValueType "ValueType" of the length map. /// ///It is also possible to change the underlying priority heap. /// @@ -48,7 +48,7 @@ ///lengths of the edges. It is read once for each edge, so the map ///may involve in relatively time consuming process to compute the edge ///length if it is necessary. The default map type is - ///\ref skeleton::StaticGraph::EdgeMap "Graph::EdgeMap" + ///\ref concept::StaticGraph::EdgeMap "Graph::EdgeMap" ///\param Heap The heap type used by the %Dijkstra ///algorithm. The default ///is using \ref BinHeap "binary heap".