Doc improvementst & todos
authoralpar
Mon, 28 Aug 2006 16:11:02 +0000
changeset 218405a5e48010ab
parent 2183 b6602864e456
child 2185 e2bf51eab7f7
Doc improvementst & todos
lemon/floyd_warshall.h
     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;