# HG changeset patch # User alpar # Date 1079950890 0 # Node ID ae5f9ca94be76661f420328c9e6803409939e73b # Parent 1d5f4cd0342cb96d943579b61dcc3e6e1bf34e21 DocFix diff -r 1d5f4cd0342c -r ae5f9ca94be7 src/work/alpar/dijkstra/dijkstra.h --- a/src/work/alpar/dijkstra/dijkstra.h Sun Mar 21 18:43:15 2004 +0000 +++ b/src/work/alpar/dijkstra/dijkstra.h Mon Mar 22 10:21:30 2004 +0000 @@ -34,9 +34,9 @@ //Alpar: Changed the order of the parameters - ///Dijkstra algorithm class. + ///%Dijkstra algorithm class. - ///This class provides an efficient implementation of Dijkstra algorithm. + ///This class provides an efficient implementation of %Dijkstra algorithm. ///The edge lengths are passed to the algorithm using a ///\ref ReadMapSkeleton "readable map", ///so it is easy to change it to any kind of length. @@ -50,7 +50,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. - ///\param Heap The heap type used by the Dijkstra + ///\param Heap The heap type used by the %Dijkstra ///algorithm. The default ///is using \ref BinHeap "binary heap". template void Dijkstra::run(Node s) {