COIN-OR::LEMON - Graph Library

Changeset 2260:4274224f8a7d in lemon-0.x for lemon/dfs.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/dfs.h

    r2156 r2260  
    4949    ///The type of the map that stores the last
    5050    ///edges of the %DFS paths.
    51     ///It must meet the \ref concept::WriteMap "WriteMap" concept.
     51    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    5252    ///
    5353    typedef typename Graph::template NodeMap<typename GR::Edge> PredMap;
     
    6565 
    6666    ///The type of the map that indicates which nodes are processed.
    67     ///It must meet the \ref concept::WriteMap "WriteMap" concept.
     67    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    6868    ///\todo named parameter to set this type, function to read and write.
    6969    typedef NullMap<typename Graph::Node,bool> ProcessedMap;
     
    8484 
    8585    ///The type of the map that indicates which nodes are reached.
    86     ///It must meet the \ref concept::WriteMap "WriteMap" concept.
     86    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    8787    ///\todo named parameter to set this type, function to read and write.
    8888    typedef typename Graph::template NodeMap<bool> ReachedMap;
     
    9999 
    100100    ///The type of the map that stores the dists of the nodes.
    101     ///It must meet the \ref concept::WriteMap "WriteMap" concept.
     101    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    102102    ///
    103103    typedef typename Graph::template NodeMap<int> DistMap;
     
    753753    ///The type of the map that stores the last
    754754    ///edges of the %DFS paths.
    755     ///It must meet the \ref concept::WriteMap "WriteMap" concept.
     755    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    756756    ///
    757757    typedef NullMap<typename Graph::Node,typename GR::Edge> PredMap;
     
    773773 
    774774    ///The type of the map that indicates which nodes are processed.
    775     ///It must meet the \ref concept::WriteMap "WriteMap" concept.
     775    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    776776    ///\todo named parameter to set this type, function to read and write.
    777777    typedef NullMap<typename Graph::Node,bool> ProcessedMap;
     
    792792 
    793793    ///The type of the map that indicates which nodes are reached.
    794     ///It must meet the \ref concept::WriteMap "WriteMap" concept.
     794    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    795795    ///\todo named parameter to set this type, function to read and write.
    796796    typedef typename Graph::template NodeMap<bool> ReachedMap;
     
    807807 
    808808    ///The type of the map that stores the dists of the nodes.
    809     ///It must meet the \ref concept::WriteMap "WriteMap" concept.
     809    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    810810    ///
    811811    typedef NullMap<typename Graph::Node,int> DistMap;
     
    11691169    ///
    11701170    /// The type of the map that indicates which nodes are reached.
    1171     /// It must meet the \ref concept::WriteMap "WriteMap" concept.
     1171    /// It must meet the \ref concepts::WriteMap "WriteMap" concept.
    11721172    /// \todo named parameter to set this type, function to read and write.
    11731173    typedef typename Graph::template NodeMap<bool> ReachedMap;
Note: See TracChangeset for help on using the changeset viewer.