# HG changeset patch # User deba # Date 1129545059 0 # Node ID fffa6456548ae169070c6585ab74dc9b2f0b93ce # Parent 06f939455cb1824448dfc62f0fead41562e40a87 Minor changes and bugfixes diff -r 06f939455cb1 -r fffa6456548a lemon/bits/vector_map.h --- a/lemon/bits/vector_map.h Mon Oct 17 10:28:48 2005 +0000 +++ b/lemon/bits/vector_map.h Mon Oct 17 10:30:59 2005 +0000 @@ -71,14 +71,6 @@ typedef _Item Key; /// The value type of the map. typedef _Value Value; - /// The const reference type of the map. - typedef typename Container::const_reference ConstReference; - /// The reference type of the map. - typedef typename Container::reference Reference; - - typedef const Value ConstValue; - typedef Value* Pointer; - typedef const Value* ConstPointer; typedef AlterationNotifier<_Item> Registry; @@ -99,7 +91,6 @@ /// The pointer type of the map; typedef typename Container::const_pointer ConstPointer; - typedef True FullTypeTag; /// \brief Constructor to attach the new map into the registry. /// diff -r 06f939455cb1 -r fffa6456548a lemon/graph_utils.h --- a/lemon/graph_utils.h Mon Oct 17 10:28:48 2005 +0000 +++ b/lemon/graph_utils.h Mon Oct 17 10:30:59 2005 +0000 @@ -1326,7 +1326,7 @@ /// whenever the graph changes. /// /// \warning Besides addNode() and addEdge(), a graph structure may provide - /// alternative ways to mogify the graph. The correct behavior of InDegMap + /// alternative ways to modify the graph. The correct behavior of InDegMap /// is not guarantied if these additional featureas are used. For example /// the funstions \ref ListGraph::changeSource() "changeSource()", /// \ref ListGraph::changeTarget() "changeTarget()" and @@ -1432,7 +1432,7 @@ /// whenever the graph changes. /// /// \warning Besides addNode() and addEdge(), a graph structure may provide - /// alternative ways to mogify the graph. The correct behavior of OutDegMap + /// alternative ways to modify the graph. The correct behavior of OutDegMap /// is not guarantied if these additional featureas are used. For example /// the funstions \ref ListGraph::changeSource() "changeSource()", /// \ref ListGraph::changeTarget() "changeTarget()" and diff -r 06f939455cb1 -r fffa6456548a lemon/path.h --- a/lemon/path.h Mon Oct 17 10:28:48 2005 +0000 +++ b/lemon/path.h Mon Oct 17 10:30:59 2005 +0000 @@ -383,6 +383,7 @@ //! and \c Edge of the original graph. //! //! \todo Thoroughfully check all the range and consistency tests. + /// \todo May we need just path for undirected graph instead of this. template class UndirPath { public: