diff -r da414906fe21 -r bb40b6db0a58 lemon/dfs.h --- a/lemon/dfs.h Fri Sep 26 12:40:11 2008 +0200 +++ b/lemon/dfs.h Sat Sep 27 14:33:28 2008 +0200 @@ -55,7 +55,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); @@ -65,7 +64,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. @@ -196,8 +194,7 @@ std::vector _stack; int _stack_head; - ///Creates the maps if necessary. - ///\todo Better memory allocation (instead of new). + //Creates the maps if necessary. void create_maps() { if(!_pred) { @@ -782,7 +779,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); @@ -1317,8 +1313,7 @@ std::vector _stack; int _stack_head; - ///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;