Changeset 280:e7f8647ce760 in lemon-1.2 for lemon/dfs.h
- Timestamp:
- 07/14/08 16:23:11 (15 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/dfs.h
r258 r280 55 55 ///\param g is the digraph, to which we would like to define the 56 56 ///\ref PredMap. 57 ///\todo The digraph alone may be insufficient to initialize58 57 static PredMap *createPredMap(const Digraph &g) 59 58 { … … 65 64 ///The type of the map that indicates which nodes are processed. 66 65 ///It must meet the \ref concepts::WriteMap "WriteMap" concept. 67 ///By default it is a NullMap.68 66 typedef NullMap<typename Digraph::Node,bool> ProcessedMap; 69 67 ///Instantiates a \ref ProcessedMap. … … 196 194 int _stack_head; 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 { … … 783 780 ///\param g is the digraph, to which we would like to define the 784 781 ///\ref PredMap. 785 ///\todo The digraph alone may be insufficient to initialize786 782 #ifdef DOXYGEN 787 783 static PredMap *createPredMap(const Digraph &g) … … 1280 1276 int _stack_head; 1281 1277 1282 ///Creates the maps if necessary. 1283 ///\todo Better memory allocation (instead of new). 1278 //Creates the maps if necessary. 1284 1279 void create_maps() { 1285 1280 if(!_reached) {
Note: See TracChangeset
for help on using the changeset viewer.