lemon/dfs.h
changeset 840 7c0ad6bd6a63
parent 834 c2230649a493
parent 833 e20173729589
child 891 75e6020b19b1
equal deleted inserted replaced
34:13622917d0a1 35:cc611cb10c9e
    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
   776 
   776 
   777     ///The type of the map that indicates which nodes are processed.
   777     ///The type of the map that indicates which nodes are processed.
   778 
   778 
   779     ///The type of the map that indicates which nodes are processed.
   779     ///The type of the map that indicates which nodes are processed.
   780     ///It must conform to the \ref concepts::WriteMap "WriteMap" concept.
   780     ///It must conform to the \ref concepts::WriteMap "WriteMap" concept.
   781     ///By default it is a NullMap.
   781     ///By default, it is a NullMap.
   782     typedef NullMap<typename Digraph::Node,bool> ProcessedMap;
   782     typedef NullMap<typename Digraph::Node,bool> ProcessedMap;
   783     ///Instantiates a ProcessedMap.
   783     ///Instantiates a ProcessedMap.
   784 
   784 
   785     ///This function instantiates a ProcessedMap.
   785     ///This function instantiates a ProcessedMap.
   786     ///\param g is the digraph, to which
   786     ///\param g is the digraph, to which