COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/bfs.h

    r287 r286  
    5555    ///\param g is the digraph, to which we would like to define the
    5656    ///\ref PredMap.
     57    ///\todo The digraph alone may be insufficient to initialize
    5758    static PredMap *createPredMap(const Digraph &g)
    5859    {
     
    6465    ///The type of the map that indicates which nodes are processed.
    6566    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
     67    ///By default it is a NullMap.
    6668    typedef NullMap<typename Digraph::Node,bool> ProcessedMap;
    6769    ///Instantiates a \ref ProcessedMap.
     
    195197    int _curr_dist;
    196198
    197     //Creates the maps if necessary.
     199    ///Creates the maps if necessary.
     200    ///\todo Better memory allocation (instead of new).
    198201    void create_maps()
    199202    {
     
    846849    ///\param g is the digraph, to which we would like to define the
    847850    ///\ref PredMap.
     851    ///\todo The digraph alone may be insufficient to initialize
    848852    static PredMap *createPredMap(const Digraph &g)
    849853    {
     
    13671371    int _list_front, _list_back;
    13681372
    1369     //Creates the maps if necessary.
     1373    ///Creates the maps if necessary.
     1374    ///\todo Better memory allocation (instead of new).
    13701375    void create_maps() {
    13711376      if(!_reached) {
Note: See TracChangeset for help on using the changeset viewer.