Changeset 280:e7f8647ce760 in lemon for lemon/dijkstra.h
- Timestamp:
- 07/14/08 16:23:11 (17 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/dijkstra.h
r258 r280 144 144 ///\param g is the digraph, to which we would like to define the 145 145 ///\ref PredMap. 146 ///\todo The digraph alone may be insufficient for the initialization147 146 static PredMap *createPredMap(const Digraph &g) 148 147 { … … 155 154 ///It must meet the \ref concepts::WriteMap "WriteMap" concept. 156 155 ///By default it is a NullMap. 157 ///\todo If it is set to a real map,158 ///Dijkstra::processed() should read this.159 156 typedef NullMap<typename Digraph::Node,bool> ProcessedMap; 160 157 ///Instantiates a \ref ProcessedMap. … … 297 294 bool local_heap; 298 295 299 ///Creates the maps if necessary. 300 ///\todo Better memory allocation (instead of new). 296 //Creates the maps if necessary. 301 297 void create_maps() 302 298 { … … 958 954 /// \param g is the digraph, to which we would like to define the 959 955 /// HeapCrossRef. 960 /// \todo The digraph alone may be insufficient for the initialization961 956 static HeapCrossRef *createHeapCrossRef(const Digraph &g) 962 957 { … … 994 989 ///\param g is the digraph, to which we would like to define the 995 990 ///\ref PredMap. 996 ///\todo The digraph alone may be insufficient to initialize997 991 #ifdef DOXYGEN 998 992 static PredMap *createPredMap(const Digraph &g) … … 1009 1003 ///It must meet the \ref concepts::WriteMap "WriteMap" concept. 1010 1004 ///By default it is a NullMap. 1011 ///\todo If it is set to a real map,1012 ///Dijkstra::processed() should read this.1013 ///\todo named parameter to set this type, function to read and write.1014 1005 typedef NullMap<typename Digraph::Node,bool> ProcessedMap; 1015 1006 ///Instantiates a \ref ProcessedMap. … … 1055 1046 /// The \ref DijkstraWizardBase is a class to be the default traits of the 1056 1047 /// \ref DijkstraWizard class. 1057 /// \todo More named parameters are required...1058 1048 template<class GR,class LM> 1059 1049 class DijkstraWizardBase : public DijkstraWizardDefaultTraits<GR,LM>
Note: See TracChangeset
for help on using the changeset viewer.