lemon/dfs.h
changeset 2260 4274224f8a7d
parent 2156 478ba329ffb7
child 2335 27aa03cd3121
     1.1 --- a/lemon/dfs.h	Tue Oct 24 16:49:41 2006 +0000
     1.2 +++ b/lemon/dfs.h	Tue Oct 24 17:19:16 2006 +0000
     1.3 @@ -48,7 +48,7 @@
     1.4      /// 
     1.5      ///The type of the map that stores the last
     1.6      ///edges of the %DFS 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 @@ -64,7 +64,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 @@ -83,7 +83,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 @@ -98,7 +98,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 @@ -752,7 +752,7 @@
    1.40      /// 
    1.41      ///The type of the map that stores the last
    1.42      ///edges of the %DFS 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 @@ -772,7 +772,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 @@ -791,7 +791,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 @@ -806,7 +806,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.
    1.75 @@ -1168,7 +1168,7 @@
    1.76      /// \brief The type of the map that indicates which nodes are reached.
    1.77      /// 
    1.78      /// The type of the map that indicates which nodes are reached.
    1.79 -    /// It must meet the \ref concept::WriteMap "WriteMap" concept.
    1.80 +    /// It must meet the \ref concepts::WriteMap "WriteMap" concept.
    1.81      /// \todo named parameter to set this type, function to read and write.
    1.82      typedef typename Graph::template NodeMap<bool> ReachedMap;
    1.83