1.1 --- a/lemon/floyd_warshall.h Mon Aug 28 16:10:12 2006 +0000
1.2 +++ b/lemon/floyd_warshall.h Mon Aug 28 16:11:02 2006 +0000
1.3 @@ -181,9 +181,10 @@
1.4 /// traits class.
1.5 ///
1.6 /// \author Balazs Dezso
1.7 -
1.8 + /// \todo A function type interface would be nice.
1.9 + /// \todo Implement \c nextNode() and \c nextEdge()
1.10 #ifdef DOXYGEN
1.11 - template <typename _Graph, typename _LengthMap typename _Traits >
1.12 + template <typename _Graph, typename _LengthMap, typename _Traits >
1.13 #else
1.14 template <typename _Graph=ListGraph,
1.15 typename _LengthMap=typename _Graph::template EdgeMap<int>,
1.16 @@ -223,6 +224,9 @@
1.17 typedef typename _Traits::PredMap PredMap;
1.18 /// \brief The type of the map that stores the dists of the nodes.
1.19 /// The type of the DistMap is a matrix map for Values
1.20 + ///
1.21 + /// \todo It should rather be
1.22 + /// called \c DistMatrix
1.23 typedef typename _Traits::DistMap DistMap;
1.24 /// \brief The operation traits.
1.25 typedef typename _Traits::OperationTraits OperationTraits;