COIN-OR::LEMON - Graph Library

Changeset 2260:4274224f8a7d in lemon-0.x for lemon/bfs.h


Ignore:
Timestamp:
10/24/06 19:19:16 (18 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3016
Message:

concept -> concepts (namespace & directory)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/bfs.h

    r2151 r2260  
    4848    ///The type of the map that stores the last
    4949    ///edges of the shortest paths.
    50     ///It must meet the \ref concept::WriteMap "WriteMap" concept.
     50    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    5151    ///
    5252    typedef typename Graph::template NodeMap<typename GR::Edge> PredMap;
     
    6363 
    6464    ///The type of the map that indicates which nodes are processed.
    65     ///It must meet the \ref concept::WriteMap "WriteMap" concept.
     65    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    6666    ///\todo named parameter to set this type, function to read and write.
    6767    typedef NullMap<typename Graph::Node,bool> ProcessedMap;
     
    8282 
    8383    ///The type of the map that indicates which nodes are reached.
    84     ///It must meet the \ref concept::WriteMap "WriteMap" concept.
     84    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    8585    ///\todo named parameter to set this type, function to read and write.
    8686    typedef typename Graph::template NodeMap<bool> ReachedMap;
     
    9797 
    9898    ///The type of the map that stores the dists of the nodes.
    99     ///It must meet the \ref concept::WriteMap "WriteMap" concept.
     99    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    100100    ///
    101101    typedef typename Graph::template NodeMap<int> DistMap;
     
    706706    ///The type of the map that stores the last
    707707    ///edges of the shortest paths.
    708     ///It must meet the \ref concept::WriteMap "WriteMap" concept.
     708    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    709709    ///
    710710    typedef NullMap<typename Graph::Node,typename GR::Edge> PredMap;
     
    726726 
    727727    ///The type of the map that indicates which nodes are processed.
    728     ///It must meet the \ref concept::WriteMap "WriteMap" concept.
     728    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    729729    ///\todo named parameter to set this type, function to read and write.
    730730    typedef NullMap<typename Graph::Node,bool> ProcessedMap;
     
    745745 
    746746    ///The type of the map that indicates which nodes are reached.
    747     ///It must meet the \ref concept::WriteMap "WriteMap" concept.
     747    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    748748    ///\todo named parameter to set this type, function to read and write.
    749749    typedef typename Graph::template NodeMap<bool> ReachedMap;
     
    760760 
    761761    ///The type of the map that stores the dists of the nodes.
    762     ///It must meet the \ref concept::WriteMap "WriteMap" concept.
     762    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    763763    ///
    764764    typedef NullMap<typename Graph::Node,int> DistMap;
Note: See TracChangeset for help on using the changeset viewer.