diff -r 7abfb55f1ecc -r e7f8647ce760 lemon/bfs.h --- a/lemon/bfs.h Mon Sep 22 10:56:01 2008 +0200 +++ b/lemon/bfs.h Mon Jul 14 15:23:11 2008 +0100 @@ -53,7 +53,6 @@ ///This function instantiates a \ref PredMap. ///\param g is the digraph, to which we would like to define the ///\ref PredMap. - ///\todo The digraph alone may be insufficient to initialize static PredMap *createPredMap(const Digraph &g) { return new PredMap(g); @@ -63,7 +62,6 @@ ///The type of the map that indicates which nodes are processed. ///It must meet the \ref concepts::WriteMap "WriteMap" concept. - ///By default it is a NullMap. typedef NullMap ProcessedMap; ///Instantiates a \ref ProcessedMap. @@ -195,8 +193,7 @@ int _queue_head,_queue_tail,_queue_next_dist; int _curr_dist; - ///Creates the maps if necessary. - ///\todo Better memory allocation (instead of new). + //Creates the maps if necessary. void create_maps() { if(!_pred) { @@ -847,7 +844,6 @@ ///This function instantiates a \ref PredMap. ///\param g is the digraph, to which we would like to define the ///\ref PredMap. - ///\todo The digraph alone may be insufficient to initialize #ifdef DOXYGEN static PredMap *createPredMap(const Digraph &g) #else @@ -1332,8 +1328,7 @@ std::vector _list; int _list_front, _list_back; - ///Creates the maps if necessary. - ///\todo Better memory allocation (instead of new). + //Creates the maps if necessary. void create_maps() { if(!_reached) { local_reached = true;