Changeset 921:818510fa3d99 in lemon-0.x for src/work/athos
- Timestamp:
- 09/29/04 17:30:04 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1232
- Location:
- src/work/athos
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/athos/bfs_test.cc
r671 r921 5 5 #include <sage_graph.h> 6 6 //#include <smart_graph.h> 7 #include < hugo/dimacs.h>8 #include < hugo/time_measure.h>9 #include < hugo/for_each_macros.h>7 #include <lemon/dimacs.h> 8 #include <lemon/time_measure.h> 9 #include <lemon/for_each_macros.h> 10 10 #include <bfs_dfs.h> 11 11 12 using namespace hugo;12 using namespace lemon; 13 13 14 14 int main() { -
src/work/athos/dijkstra_at.h
r250 r921 25 25 using namespace std; 26 26 27 namespace hugo{27 namespace lemon { 28 28 29 29 template <typename graph_type, typename T> … … 119 119 120 120 121 }//namespace hugo121 }//namespace lemon 122 122 123 123 #endif //DIJKSTRA_AT -
src/work/athos/dijkstra_demo.cc
r250 r921 6 6 #include <dijkstra_at.h> 7 7 8 using namespace hugo;8 using namespace lemon; 9 9 10 10 -
src/work/athos/kruskal.h
r250 r921 8 8 #include <union_find.h> 9 9 10 namespace hugo{10 namespace lemon { 11 11 12 12 template <typename graph_type, typename T> … … 57 57 } 58 58 59 }//namespacc hugo59 }//namespacc lemon 60 60 61 61 #endif -
src/work/athos/min_cost_flow.cc
r672 r921 1 1 #include <iostream> 2 2 //#include "test_tools.h" 3 #include < hugo/list_graph.h>3 #include <lemon/list_graph.h> 4 4 #include <mincostflow.h> 5 5 //#include <path.h> … … 7 7 8 8 using namespace std; 9 using namespace hugo;9 using namespace lemon; 10 10 11 11 -
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 -
src/work/athos/minlength_demo.cc
r607 r921 3 3 4 4 #include <list_graph.h> 5 #include < hugo/dimacs.h>6 #include < hugo/time_measure.h>5 #include <lemon/dimacs.h> 6 #include <lemon/time_measure.h> 7 7 #include "minlengthpaths.h" 8 8 //#include <time_measure.h> 9 9 10 using namespace hugo;10 using namespace lemon; 11 11 12 12 // Use a DIMACS max flow file as stdin. -
src/work/athos/old/minlengthpaths.h
r607 r921 1 1 // -*- c++ -*- 2 #ifndef HUGO_MINLENGTHPATHS_H3 #define HUGO_MINLENGTHPATHS_H2 #ifndef LEMON_MINLENGTHPATHS_H 3 #define LEMON_MINLENGTHPATHS_H 4 4 5 5 ///\ingroup galgs … … 8 8 9 9 #include <iostream> 10 #include < hugo/dijkstra.h>11 #include < hugo/graph_wrapper.h>12 #include < hugo/maps.h>10 #include <lemon/dijkstra.h> 11 #include <lemon/graph_wrapper.h> 12 #include <lemon/maps.h> 13 13 #include <vector> 14 14 15 15 16 namespace hugo{16 namespace lemon { 17 17 18 18 /// \addtogroup galgs … … 22 22 /// of minimal total length 23 23 /// 24 /// The class \ref hugo::MinLengthPaths "MinLengthPaths" implements24 /// The class \ref lemon::MinLengthPaths "MinLengthPaths" implements 25 25 /// an algorithm for finding k edge-disjoint paths 26 26 /// from a given source node to a given target node in an … … 198 198 ///@} 199 199 200 } //namespace hugo201 202 #endif // HUGO_MINLENGTHPATHS_H200 } //namespace lemon 201 202 #endif //LEMON_MINLENGTHPATHS_H -
src/work/athos/pf_demo.cc
r331 r921 8 8 #include "preflow_push.hh" 9 9 10 using namespace hugo;10 using namespace lemon; 11 11 12 12 -
src/work/athos/preflow_push_wogw.h
r331 r921 1 #ifndef HUGO_PREFLOW_PUSH_HH2 #define HUGO_PREFLOW_PUSH_HH1 #ifndef LEMON_PREFLOW_PUSH_HH 2 #define LEMON_PREFLOW_PUSH_HH 3 3 4 4 //#include <algorithm> … … 14 14 using namespace std; 15 15 16 namespace hugo{16 namespace lemon { 17 17 18 18 template <typename Graph, typename T> … … 459 459 460 460 461 }//namespace hugo461 }//namespace lemon 462 462 463 463 #endif //PREFLOW_PUSH_HH -
src/work/athos/suurballe.cc
r314 r921 7 7 #include <minlengthpaths.h> 8 8 9 using namespace hugo;9 using namespace lemon; 10 10 11 11 -
src/work/athos/uf_demo.cc
r250 r921 5 5 #include <iostream> 6 6 #include <list_graph.hh> 7 using namespace hugo;7 using namespace lemon; 8 8 using namespace std; 9 9 -
src/work/athos/union_find.h
r250 r921 14 14 15 15 16 namespace hugo{16 namespace lemon { 17 17 18 18 template <typename KeyType, typename KeyIntMap> … … 91 91 }; 92 92 93 }//namespace hugo93 }//namespace lemon 94 94 #endif -
src/work/athos/xy/boundingbox.cc
r244 r921 3 3 #include <iostream> 4 4 using namespace std; 5 using namespace hugo;5 using namespace lemon; 6 6 int main() 7 7 { -
src/work/athos/xy/xy.cc
r513 r921 3 3 #include <vector> 4 4 using namespace std; 5 using namespace hugo;5 using namespace lemon; 6 6 7 7
Note: See TracChangeset
for help on using the changeset viewer.