diff -r 7abfb55f1ecc -r e7f8647ce760 lemon/dijkstra.h --- a/lemon/dijkstra.h Mon Sep 22 10:56:01 2008 +0200 +++ b/lemon/dijkstra.h Mon Jul 14 15:23:11 2008 +0100 @@ -143,7 +143,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 for the initialization static PredMap *createPredMap(const Digraph &g) { return new PredMap(g); @@ -154,8 +153,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. - ///\todo If it is set to a real map, - ///Dijkstra::processed() should read this. typedef NullMap ProcessedMap; ///Instantiates a \ref ProcessedMap. @@ -296,8 +293,7 @@ //Indicates if _heap is locally allocated (true) or not. bool local_heap; - ///Creates the maps if necessary. - ///\todo Better memory allocation (instead of new). + //Creates the maps if necessary. void create_maps() { if(!_pred) { @@ -957,7 +953,6 @@ ///This function instantiates a \ref HeapCrossRef. /// \param g is the digraph, to which we would like to define the /// HeapCrossRef. - /// \todo The digraph alone may be insufficient for the initialization static HeapCrossRef *createHeapCrossRef(const Digraph &g) { return new HeapCrossRef(g); @@ -993,7 +988,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 @@ -1008,9 +1002,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. - ///\todo If it is set to a real map, - ///Dijkstra::processed() should read this. - ///\todo named parameter to set this type, function to read and write. typedef NullMap ProcessedMap; ///Instantiates a \ref ProcessedMap. @@ -1054,7 +1045,6 @@ /// as well as the \ref Dijkstra class. /// The \ref DijkstraWizardBase is a class to be the default traits of the /// \ref DijkstraWizard class. - /// \todo More named parameters are required... template class DijkstraWizardBase : public DijkstraWizardDefaultTraits {