Changeset 921:818510fa3d99 in lemon-0.x for src/work/athos/mincostflow.h
- Timestamp:
- 09/29/04 17:30:04 (21 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1232
- File:
-
- 1 edited
-
src/work/athos/mincostflow.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/work/athos/mincostflow.h
r672 r921 1 1 // -*- c++ -*- 2 #ifndef HUGO_MINCOSTFLOW_H3 #define HUGO_MINCOSTFLOW_H2 #ifndef LEMON_MINCOSTFLOW_H 3 #define LEMON_MINCOSTFLOW_H 4 4 5 5 ///\ingroup galgs … … 7 7 ///\brief An algorithm for finding the minimum cost flow of given value in an uncapacitated network 8 8 9 #include < hugo/dijkstra.h>10 #include < hugo/graph_wrapper.h>11 #include < hugo/maps.h>9 #include <lemon/dijkstra.h> 10 #include <lemon/graph_wrapper.h> 11 #include <lemon/maps.h> 12 12 #include <vector> 13 13 #include <list> 14 14 #include <values.h> 15 #include < hugo/for_each_macros.h>16 #include < hugo/unionfind.h>17 #include < hugo/bin_heap.h>15 #include <lemon/for_each_macros.h> 16 #include <lemon/unionfind.h> 17 #include <lemon/bin_heap.h> 18 18 #include <bfs_dfs.h> 19 19 20 namespace hugo{20 namespace lemon { 21 21 22 22 /// \addtogroup galgs … … 27 27 /// 28 28 /// 29 /// The class \ref hugo::MinCostFlow "MinCostFlow" implements29 /// The class \ref lemon::MinCostFlow "MinCostFlow" implements 30 30 /// an algorithm for solving the following general minimum cost flow problem> 31 31 /// … … 509 509 ///@} 510 510 511 } //namespace hugo512 513 #endif // HUGO_MINCOSTFLOW_H511 } //namespace lemon 512 513 #endif //LEMON_MINCOSTFLOW_H
Note: See TracChangeset
for help on using the changeset viewer.

