[Lemon-commits] [lemon_svn] alpar: r943 - hugo/trunk/src/hugo
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:42:21 CET 2006
Author: alpar
Date: Tue Jul 6 11:52:04 2004
New Revision: 943
Modified:
hugo/trunk/src/hugo/dijkstra.h
Log:
Fix some typos in docs.
Modified: hugo/trunk/src/hugo/dijkstra.h
==============================================================================
--- hugo/trunk/src/hugo/dijkstra.h (original)
+++ hugo/trunk/src/hugo/dijkstra.h Tue Jul 6 11:52:04 2004
@@ -38,7 +38,7 @@
///is using \ref BinHeap "binary heap".
///
///\author Jacint Szabo and Alpar Juttner
- ///\todo We need a typedef-names should be standardized.
+ ///\todo We need a typedef-names should be standardized. (-:
#ifdef DOXYGEN
template <typename GR,
@@ -60,15 +60,15 @@
///The type of the length of the edges.
typedef typename LM::ValueType ValueType;
- ///The the type of the map that stores the edge lengths.
+ ///The type of the map that stores the edge lengths.
typedef LM LengthMap;
- ///\brief The the type of the map that stores the last
+ ///\brief The type of the map that stores the last
///edges of the shortest paths.
typedef typename Graph::template NodeMap<Edge> PredMap;
- ///\brief The the type of the map that stores the last but one
+ ///\brief The type of the map that stores the last but one
///nodes of the shortest paths.
typedef typename Graph::template NodeMap<Node> PredNodeMap;
- ///The the type of the map that stores the dists of the nodes.
+ ///The type of the map that stores the dists of the nodes.
typedef typename Graph::template NodeMap<ValueType> DistMap;
private:
More information about the Lemon-commits
mailing list