lemon/bfs.h
changeset 2260 4274224f8a7d
parent 2151 38ec4a930c05
child 2300 69330d717235
     1.1 --- a/lemon/bfs.h	Tue Oct 24 16:49:41 2006 +0000
     1.2 +++ b/lemon/bfs.h	Tue Oct 24 17:19:16 2006 +0000
     1.3 @@ -47,7 +47,7 @@
     1.4      /// 
     1.5      ///The type of the map that stores the last
     1.6      ///edges of the shortest paths.
     1.7 -    ///It must meet the \ref concept::WriteMap "WriteMap" concept.
     1.8 +    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
     1.9      ///
    1.10      typedef typename Graph::template NodeMap<typename GR::Edge> PredMap;
    1.11      ///Instantiates a PredMap.
    1.12 @@ -62,7 +62,7 @@
    1.13      ///The type of the map that indicates which nodes are processed.
    1.14   
    1.15      ///The type of the map that indicates which nodes are processed.
    1.16 -    ///It must meet the \ref concept::WriteMap "WriteMap" concept.
    1.17 +    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    1.18      ///\todo named parameter to set this type, function to read and write.
    1.19      typedef NullMap<typename Graph::Node,bool> ProcessedMap;
    1.20      ///Instantiates a ProcessedMap.
    1.21 @@ -81,7 +81,7 @@
    1.22      ///The type of the map that indicates which nodes are reached.
    1.23   
    1.24      ///The type of the map that indicates which nodes are reached.
    1.25 -    ///It must meet the \ref concept::WriteMap "WriteMap" concept.
    1.26 +    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    1.27      ///\todo named parameter to set this type, function to read and write.
    1.28      typedef typename Graph::template NodeMap<bool> ReachedMap;
    1.29      ///Instantiates a ReachedMap.
    1.30 @@ -96,7 +96,7 @@
    1.31      ///The type of the map that stores the dists of the nodes.
    1.32   
    1.33      ///The type of the map that stores the dists of the nodes.
    1.34 -    ///It must meet the \ref concept::WriteMap "WriteMap" concept.
    1.35 +    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    1.36      ///
    1.37      typedef typename Graph::template NodeMap<int> DistMap;
    1.38      ///Instantiates a DistMap.
    1.39 @@ -705,7 +705,7 @@
    1.40      /// 
    1.41      ///The type of the map that stores the last
    1.42      ///edges of the shortest paths.
    1.43 -    ///It must meet the \ref concept::WriteMap "WriteMap" concept.
    1.44 +    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    1.45      ///
    1.46      typedef NullMap<typename Graph::Node,typename GR::Edge> PredMap;
    1.47      ///Instantiates a PredMap.
    1.48 @@ -725,7 +725,7 @@
    1.49      ///The type of the map that indicates which nodes are processed.
    1.50   
    1.51      ///The type of the map that indicates which nodes are processed.
    1.52 -    ///It must meet the \ref concept::WriteMap "WriteMap" concept.
    1.53 +    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    1.54      ///\todo named parameter to set this type, function to read and write.
    1.55      typedef NullMap<typename Graph::Node,bool> ProcessedMap;
    1.56      ///Instantiates a ProcessedMap.
    1.57 @@ -744,7 +744,7 @@
    1.58      ///The type of the map that indicates which nodes are reached.
    1.59   
    1.60      ///The type of the map that indicates which nodes are reached.
    1.61 -    ///It must meet the \ref concept::WriteMap "WriteMap" concept.
    1.62 +    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    1.63      ///\todo named parameter to set this type, function to read and write.
    1.64      typedef typename Graph::template NodeMap<bool> ReachedMap;
    1.65      ///Instantiates a ReachedMap.
    1.66 @@ -759,7 +759,7 @@
    1.67      ///The type of the map that stores the dists of the nodes.
    1.68   
    1.69      ///The type of the map that stores the dists of the nodes.
    1.70 -    ///It must meet the \ref concept::WriteMap "WriteMap" concept.
    1.71 +    ///It must meet the \ref concepts::WriteMap "WriteMap" concept.
    1.72      ///
    1.73      typedef NullMap<typename Graph::Node,int> DistMap;
    1.74      ///Instantiates a DistMap.