Changeset 758:49b1a30c4dc4 in lemon-0.x for src/hugo
- Timestamp:
- 08/05/04 13:38:26 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1018
- Location:
- src/hugo
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/hugo/dijkstra.h
r734 r758 3 3 #define HUGO_DIJKSTRA_H 4 4 5 ///\ingroup galgs5 ///\ingroup flowalgs 6 6 ///\file 7 7 ///\brief Dijkstra algorithm. … … 12 12 namespace hugo { 13 13 14 /// \addtogroup galgs14 /// \addtogroup flowalgs 15 15 /// @{ 16 16 -
src/hugo/max_flow.h
r757 r758 11 11 12 12 /// \file 13 /// \ingroup galgs13 /// \ingroup flowalgs 14 14 15 15 namespace hugo { 16 16 17 /// \addtogroup galgs 18 /// @{ 17 /// \addtogroup flowalgs 18 /// @{ 19 19 20 ///Maximum flow algorithms class. 20 21 … … 27 28 ///\ref setFlow. Before any subsequent runs of any algorithm of 28 29 ///the class \ref setFlow should be called. 29 30 /// 30 31 ///After running an algorithm of the class, the actual flow value 31 32 ///can be obtained by calling \ref flowValue(). The minimum … … 33 34 ///calling \ref minCut. (\ref minMinCut and \ref maxMinCut writes 34 35 ///the inclusionwise minimum and maximum of the minimum value 35 ///cuts, resp.) 36 ///cuts, resp.) 37 /// 36 38 ///\param Graph The directed graph type the algorithm runs on. 37 39 ///\param Num The number type of the capacities and the flow values. 38 40 ///\param CapMap The capacity map type. 39 ///\param FlowMap The flow map type. 41 ///\param FlowMap The flow map type. 42 /// 40 43 ///\author Marton Makai, Jacint Szabo 41 44 template <typename Graph, typename Num, -
src/hugo/mincostflows.h
r661 r758 3 3 #define HUGO_MINCOSTFLOWS_H 4 4 5 ///\ingroup galgs5 ///\ingroup flowalgs 6 6 ///\file 7 7 ///\brief An algorithm for finding a flow of value \c k (for small values of \c k) having minimal total cost … … 16 16 namespace hugo { 17 17 18 /// \addtogroup galgs18 /// \addtogroup flowalgs 19 19 /// @{ 20 20
Note: See TracChangeset
for help on using the changeset viewer.