lemon/min_cost_arborescence.h
changeset 2259 da142c310d02
parent 2151 38ec4a930c05
child 2260 4274224f8a7d
equal deleted inserted replaced
5:219b6f0476fd 6:214bd254620e
    56     /// \brief The type of the map that stores which edges are 
    56     /// \brief The type of the map that stores which edges are 
    57     /// in the arborescence.
    57     /// in the arborescence.
    58     ///
    58     ///
    59     /// The type of the map that stores which edges are in the arborescence.
    59     /// The type of the map that stores which edges are in the arborescence.
    60     /// It must meet the \ref concept::WriteMap "WriteMap" concept.
    60     /// It must meet the \ref concept::WriteMap "WriteMap" concept.
    61     /// Initially it will be setted to false on each edge. After it
    61     /// Initially it will be set to false on each edge. After it
    62     /// will set all arborescence edges once.
    62     /// will set all arborescence edges once.
    63     typedef typename Graph::template EdgeMap<bool> ArborescenceMap; 
    63     typedef typename Graph::template EdgeMap<bool> ArborescenceMap; 
    64 
    64 
    65     /// \brief Instantiates a ArborescenceMap.
    65     /// \brief Instantiates a ArborescenceMap.
    66     ///
    66     ///