[Lemon-commits] [lemon_svn] alpar: r2904 - hugo/trunk/lemon
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 21:51:09 CET 2006
Author: alpar
Date: Mon Aug 28 18:11:02 2006
New Revision: 2904
Modified:
hugo/trunk/lemon/floyd_warshall.h
Log:
Doc improvementst & todos
Modified: hugo/trunk/lemon/floyd_warshall.h
==============================================================================
--- hugo/trunk/lemon/floyd_warshall.h (original)
+++ hugo/trunk/lemon/floyd_warshall.h Mon Aug 28 18:11:02 2006
@@ -181,9 +181,10 @@
/// traits class.
///
/// \author Balazs Dezso
-
+ /// \todo A function type interface would be nice.
+ /// \todo Implement \c nextNode() and \c nextEdge()
#ifdef DOXYGEN
- template <typename _Graph, typename _LengthMap typename _Traits >
+ template <typename _Graph, typename _LengthMap, typename _Traits >
#else
template <typename _Graph=ListGraph,
typename _LengthMap=typename _Graph::template EdgeMap<int>,
@@ -223,6 +224,9 @@
typedef typename _Traits::PredMap PredMap;
/// \brief The type of the map that stores the dists of the nodes.
/// The type of the DistMap is a matrix map for Values
+ ///
+ /// \todo It should rather be
+ /// called \c DistMatrix
typedef typename _Traits::DistMap DistMap;
/// \brief The operation traits.
typedef typename _Traits::OperationTraits OperationTraits;
More information about the Lemon-commits
mailing list