Changeset 280:e7f8647ce760 in lemon-1.2 for lemon/bfs.h
- Timestamp:
- 07/14/08 16:23:11 (15 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/bfs.h
r258 r280 54 54 ///\param g is the digraph, to which we would like to define the 55 55 ///\ref PredMap. 56 ///\todo The digraph alone may be insufficient to initialize57 56 static PredMap *createPredMap(const Digraph &g) 58 57 { … … 64 63 ///The type of the map that indicates which nodes are processed. 65 64 ///It must meet the \ref concepts::WriteMap "WriteMap" concept. 66 ///By default it is a NullMap.67 65 typedef NullMap<typename Digraph::Node,bool> ProcessedMap; 68 66 ///Instantiates a \ref ProcessedMap. … … 196 194 int _curr_dist; 197 195 198 ///Creates the maps if necessary. 199 ///\todo Better memory allocation (instead of new). 196 //Creates the maps if necessary. 200 197 void create_maps() 201 198 { … … 848 845 ///\param g is the digraph, to which we would like to define the 849 846 ///\ref PredMap. 850 ///\todo The digraph alone may be insufficient to initialize851 847 #ifdef DOXYGEN 852 848 static PredMap *createPredMap(const Digraph &g) … … 1333 1329 int _list_front, _list_back; 1334 1330 1335 ///Creates the maps if necessary. 1336 ///\todo Better memory allocation (instead of new). 1331 //Creates the maps if necessary. 1337 1332 void create_maps() { 1338 1333 if(!_reached) {
Note: See TracChangeset
for help on using the changeset viewer.