src/work/marci/bfs_mm.h
changeset 987 87f7c54892df
parent 986 e997802b855c
     1.1 --- a/src/work/marci/bfs_mm.h	Sat Nov 13 12:53:28 2004 +0000
     1.2 +++ b/src/work/marci/bfs_mm.h	Sat Nov 13 17:07:10 2004 +0000
     1.3 @@ -140,7 +140,7 @@
     1.4      const ReachedMap& reachedMap() const { return *reached_map; }
     1.5      /// Guess what?
     1.6      /// \deprecated 
     1.7 -    typename ReachedMap::ValueType reached(const Node& n) const { 
     1.8 +    typename ReachedMap::Value reached(const Node& n) const { 
     1.9        return (*reached_map)[n]; 
    1.10      }
    1.11      /// Guess what?
    1.12 @@ -242,7 +242,7 @@
    1.13      const PredMap& predMap() const { return *pred_map; }
    1.14      /// Guess what?
    1.15      /// \deprecated 
    1.16 -    typename PredMap::ValueType pred(const Node& n) const { 
    1.17 +    typename PredMap::Value pred(const Node& n) const { 
    1.18        return (*pred_map)[n]; 
    1.19      }
    1.20      /// Guess what?
    1.21 @@ -250,7 +250,7 @@
    1.22      const PredNodeMap& predNodeMap() const { return *pred_node_map; }
    1.23      /// Guess what?
    1.24      /// \deprecated 
    1.25 -    typename PredNodeMap::ValueType predNode(const Node& n) const { 
    1.26 +    typename PredNodeMap::Value predNode(const Node& n) const { 
    1.27        return (*pred_node_map)[n]; 
    1.28      }
    1.29      /// Guess what?
    1.30 @@ -258,7 +258,7 @@
    1.31      const DistMap& distMap() const { return *dist_map; }
    1.32      /// Guess what?
    1.33      /// \deprecated 
    1.34 -    typename DistMap::ValueType dist(const Node& n) const { 
    1.35 +    typename DistMap::Value dist(const Node& n) const { 
    1.36        return (*dist_map)[n]; 
    1.37      }
    1.38    };