diff -r 7abfb55f1ecc -r e7f8647ce760 lemon/dfs.h --- a/lemon/dfs.h Mon Sep 22 10:56:01 2008 +0200 +++ b/lemon/dfs.h Mon Jul 14 15:23:11 2008 +0100 @@ -54,7 +54,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); @@ -64,7 +63,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 @@ 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 #ifdef DOXYGEN static PredMap *createPredMap(const Digraph &g) #else @@ -1279,8 +1275,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;