lemon/bfs.h
changeset 898 75c97c3786d6
parent 834 c2230649a493
parent 833 e20173729589
child 891 75e6020b19b1
equal deleted inserted replaced
29:08422c1eaeb8 30:5378c14447a8
    61 
    61 
    62     ///The type of the map that indicates which nodes are processed.
    62     ///The type of the map that indicates which nodes are processed.
    63 
    63 
    64     ///The type of the map that indicates which nodes are processed.
    64     ///The type of the map that indicates which nodes are processed.
    65     ///It must conform to the \ref concepts::WriteMap "WriteMap" concept.
    65     ///It must conform to the \ref concepts::WriteMap "WriteMap" concept.
    66     ///By default it is a NullMap.
    66     ///By default, it is a NullMap.
    67     typedef NullMap<typename Digraph::Node,bool> ProcessedMap;
    67     typedef NullMap<typename Digraph::Node,bool> ProcessedMap;
    68     ///Instantiates a \c ProcessedMap.
    68     ///Instantiates a \c ProcessedMap.
    69 
    69 
    70     ///This function instantiates a \ref ProcessedMap.
    70     ///This function instantiates a \ref ProcessedMap.
    71     ///\param g is the digraph, to which
    71     ///\param g is the digraph, to which
   846 
   846 
   847     ///The type of the map that indicates which nodes are processed.
   847     ///The type of the map that indicates which nodes are processed.
   848 
   848 
   849     ///The type of the map that indicates which nodes are processed.
   849     ///The type of the map that indicates which nodes are processed.
   850     ///It must conform to the \ref concepts::WriteMap "WriteMap" concept.
   850     ///It must conform to the \ref concepts::WriteMap "WriteMap" concept.
   851     ///By default it is a NullMap.
   851     ///By default, it is a NullMap.
   852     typedef NullMap<typename Digraph::Node,bool> ProcessedMap;
   852     typedef NullMap<typename Digraph::Node,bool> ProcessedMap;
   853     ///Instantiates a ProcessedMap.
   853     ///Instantiates a ProcessedMap.
   854 
   854 
   855     ///This function instantiates a ProcessedMap.
   855     ///This function instantiates a ProcessedMap.
   856     ///\param g is the digraph, to which
   856     ///\param g is the digraph, to which