src/work/marci/bfs_mm.h
changeset 1007 a7d5fe18d8f9
parent 986 e997802b855c
equal deleted inserted replaced
1:15f4a5aa2e37 2:583e9e363e53
   138     /// Guess what?
   138     /// Guess what?
   139     /// \deprecated 
   139     /// \deprecated 
   140     const ReachedMap& reachedMap() const { return *reached_map; }
   140     const ReachedMap& reachedMap() const { return *reached_map; }
   141     /// Guess what?
   141     /// Guess what?
   142     /// \deprecated 
   142     /// \deprecated 
   143     typename ReachedMap::ValueType reached(const Node& n) const { 
   143     typename ReachedMap::Value reached(const Node& n) const { 
   144       return (*reached_map)[n]; 
   144       return (*reached_map)[n]; 
   145     }
   145     }
   146     /// Guess what?
   146     /// Guess what?
   147     /// \deprecated
   147     /// \deprecated
   148     const std::queue<Node>& getBfsQueue() const { return bfs_queue; }
   148     const std::queue<Node>& getBfsQueue() const { return bfs_queue; }
   240     /// Guess what?
   240     /// Guess what?
   241     /// \deprecated 
   241     /// \deprecated 
   242     const PredMap& predMap() const { return *pred_map; }
   242     const PredMap& predMap() const { return *pred_map; }
   243     /// Guess what?
   243     /// Guess what?
   244     /// \deprecated 
   244     /// \deprecated 
   245     typename PredMap::ValueType pred(const Node& n) const { 
   245     typename PredMap::Value pred(const Node& n) const { 
   246       return (*pred_map)[n]; 
   246       return (*pred_map)[n]; 
   247     }
   247     }
   248     /// Guess what?
   248     /// Guess what?
   249     /// \deprecated 
   249     /// \deprecated 
   250     const PredNodeMap& predNodeMap() const { return *pred_node_map; }
   250     const PredNodeMap& predNodeMap() const { return *pred_node_map; }
   251     /// Guess what?
   251     /// Guess what?
   252     /// \deprecated 
   252     /// \deprecated 
   253     typename PredNodeMap::ValueType predNode(const Node& n) const { 
   253     typename PredNodeMap::Value predNode(const Node& n) const { 
   254       return (*pred_node_map)[n]; 
   254       return (*pred_node_map)[n]; 
   255     }
   255     }
   256     /// Guess what?
   256     /// Guess what?
   257     /// \deprecated
   257     /// \deprecated
   258     const DistMap& distMap() const { return *dist_map; }
   258     const DistMap& distMap() const { return *dist_map; }
   259     /// Guess what?
   259     /// Guess what?
   260     /// \deprecated 
   260     /// \deprecated 
   261     typename DistMap::ValueType dist(const Node& n) const { 
   261     typename DistMap::Value dist(const Node& n) const { 
   262       return (*dist_map)[n]; 
   262       return (*dist_map)[n]; 
   263     }
   263     }
   264   };
   264   };
   265 
   265 
   266 //   template <typename Graph, 
   266 //   template <typename Graph,