src/work/jacint/max_flow.h
changeset 639 a11a4377a816
parent 631 26819ef1611f
child 640 d426dca0aaf7
equal deleted inserted replaced
11:4a98eb1407c2 12:9e5b9c51c8ec
    35   ///value can be obtained by calling \ref flowValue(). The minimum
    35   ///value can be obtained by calling \ref flowValue(). The minimum
    36   ///value cut can be written into a \c node map of \c bools by
    36   ///value cut can be written into a \c node map of \c bools by
    37   ///calling \ref minCut. (\ref minMinCut and \ref maxMinCut writes
    37   ///calling \ref minCut. (\ref minMinCut and \ref maxMinCut writes
    38   ///the inclusionwise minimum and maximum of the minimum value
    38   ///the inclusionwise minimum and maximum of the minimum value
    39   ///cuts, resp.)                                                                                                                               
    39   ///cuts, resp.)                                                                                                                               
    40   ///\param Graph The undirected graph type the algorithm runs on.
    40   ///\param Graph The directed graph type the algorithm runs on.
    41   ///\param Num The number type of the capacities and the flow values.
    41   ///\param Num The number type of the capacities and the flow values.
    42   ///\param CapMap The type of the capacity map.
    42   ///\param CapMap The type of the capacity map.
    43   ///\param FlowMap The type of the flow map.                                                                                                           
    43   ///\param FlowMap The type of the flow map.                                                                                                           
    44   ///\author Marton Makai, Jacint Szabo 
    44   ///\author Marton Makai, Jacint Szabo 
    45   template <typename Graph, typename Num,
    45   template <typename Graph, typename Num,