Changeset 921:818510fa3d99 in lemon-0.x for src/work/jacint
- 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/jacint
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/jacint/graph_gen.h
r605 r921 11 11 // ///\author Marton Makai 12 12 13 namespace hugo{13 namespace lemon { 14 14 15 15 … … 118 118 } 119 119 120 } //namespace hugo120 } //namespace lemon -
src/work/jacint/ledacomp.cc
r581 r921 42 42 // } 43 43 44 using namespace hugo;44 using namespace lemon; 45 45 46 46 int main() { -
src/work/jacint/max_flow.h
r709 r921 1 1 // -*- C++ -*- 2 #ifndef HUGO_MAX_FLOW_H3 #define HUGO_MAX_FLOW_H2 #ifndef LEMON_MAX_FLOW_H 3 #define LEMON_MAX_FLOW_H 4 4 5 5 #include <vector> … … 7 7 #include <stack> 8 8 9 #include < hugo/graph_wrapper.h>9 #include <lemon/graph_wrapper.h> 10 10 #include <bfs_dfs.h> 11 #include < hugo/invalid.h>12 #include < hugo/maps.h>13 #include < hugo/for_each_macros.h>11 #include <lemon/invalid.h> 12 #include <lemon/maps.h> 13 #include <lemon/for_each_macros.h> 14 14 15 15 /// \file … … 17 17 /// \ingroup galgs 18 18 19 namespace hugo{19 namespace lemon { 20 20 21 21 /// \addtogroup galgs … … 1194 1194 1195 1195 dfs.pushAndSetReached 1196 ///\bug hugo0.21196 ///\bug lemon 0.2 1197 1197 (typename ErasingResGW::Node 1198 1198 (typename FilterResGW::Node … … 1261 1261 1262 1262 1263 } //namespace hugo1264 1265 #endif // HUGO_MAX_FLOW_H1266 1267 1268 1269 1263 } //namespace lemon 1264 1265 #endif //LEMON_MAX_FLOW_H 1266 1267 1268 1269 -
src/work/jacint/max_flow_bug.cc
r757 r921 1 1 #include <iostream> 2 2 3 //#include < hugo/list_graph.h>3 //#include <lemon/list_graph.h> 4 4 #include <sage_graph.h> 5 #include < hugo/dimacs.h>6 #include < hugo/max_flow.h>5 #include <lemon/dimacs.h> 6 #include <lemon/max_flow.h> 7 7 //#include <max_flow_no_stack.h> 8 #include < hugo/time_measure.h>8 #include <lemon/time_measure.h> 9 9 10 using namespace hugo;10 using namespace lemon; 11 11 12 12 int main(int, char **) { -
src/work/jacint/max_flow_test.cc
r757 r921 1 1 #include <iostream> 2 2 3 #include < hugo/list_graph.h>4 #include < hugo/dimacs.h>3 #include <lemon/list_graph.h> 4 #include <lemon/dimacs.h> 5 5 #include <max_flow.h> 6 6 #include <max_flow_no_stack.h> 7 #include < hugo/time_measure.h>7 #include <lemon/time_measure.h> 8 8 9 using namespace hugo;9 using namespace lemon; 10 10 11 11 int main(int, char **) { -
src/work/jacint/max_matching.cc
r536 r921 11 11 #include <graph_wrapper.h> 12 12 13 using namespace hugo;13 using namespace lemon; 14 14 15 15 int main(int, char **) { -
src/work/jacint/max_matching.h
r682 r921 1 1 // -*- C++ -*- 2 #ifndef HUGO_MAX_MATCHING_H3 #define HUGO_MAX_MATCHING_H2 #ifndef LEMON_MAX_MATCHING_H 3 #define LEMON_MAX_MATCHING_H 4 4 5 5 ///\ingroup galgs … … 12 12 #include <unionfind.h> 13 13 14 namespace hugo{14 namespace lemon { 15 15 16 16 /// \addtogroup galgs … … 565 565 /// @} 566 566 567 } //END OF NAMESPACE HUGO567 } //END OF NAMESPACE LEMON 568 568 569 569 #endif //EDMONDS_H -
src/work/jacint/max_save.h
r620 r921 1 1 // -*- C++ -*- 2 #ifndef HUGO_MAX_FLOW_H3 #define HUGO_MAX_FLOW_H2 #ifndef LEMON_MAX_FLOW_H 3 #define LEMON_MAX_FLOW_H 4 4 5 5 ///\ingroup galgs … … 23 23 /// \brief Dimacs file format reader. 24 24 25 namespace hugo{25 namespace lemon { 26 26 27 27 /// \addtogroup galgs … … 1128 1128 /// @} 1129 1129 1130 } //END OF NAMESPACE HUGO1131 1132 #endif // HUGO_MAX_FLOW_H1133 1134 1135 1136 1130 } //END OF NAMESPACE LEMON 1131 1132 #endif //LEMON_MAX_FLOW_H 1133 1134 1135 1136 -
src/work/jacint/preflow.cc
r470 r921 6 6 #include <time_measure.h> 7 7 8 using namespace hugo;8 using namespace lemon; 9 9 10 10 int main(int, char **) { -
src/work/jacint/preflow_excess.h
r437 r921 44 44 */ 45 45 46 #ifndef HUGO_PREFLOW_H47 #define HUGO_PREFLOW_H46 #ifndef LEMON_PREFLOW_H 47 #define LEMON_PREFLOW_H 48 48 49 49 #define H0 20 … … 54 54 #include <stack> 55 55 56 namespace hugo{56 namespace lemon { 57 57 58 58 template <typename Graph, typename T, … … 656 656 }; 657 657 658 } //namespace hugo658 } //namespace lemon 659 659 660 660 #endif //PREFLOW_H -
src/work/jacint/preflow_excess_test.cc
r437 r921 12 12 #include <time_measure.h> 13 13 14 using namespace hugo;14 using namespace lemon; 15 15 16 16 int main(int, char **) { -
src/work/jacint/preflow_res.h
r444 r921 1 1 // -*- C++ -*- 2 2 //The same as preflow.h, using ResGraphWrapper 3 #ifndef HUGO_PREFLOW_RES_H4 #define HUGO_PREFLOW_RES_H3 #ifndef LEMON_PREFLOW_RES_H 4 #define LEMON_PREFLOW_RES_H 5 5 6 6 #define H0 20 … … 13 13 #include<iostream> 14 14 15 namespace hugo{15 namespace lemon { 16 16 17 17 template <typename Graph, typename T, … … 487 487 }; 488 488 489 } //namespace hugo490 491 #endif // HUGO_PREFLOW_RES_H492 493 494 495 489 } //namespace lemon 490 491 #endif //LEMON_PREFLOW_RES_H 492 493 494 495 -
src/work/jacint/prim.cc
r258 r921 11 11 #include <fib_heap.h> 12 12 13 using namespace hugo;13 using namespace lemon; 14 14 15 15 int main(int, char **) { -
src/work/jacint/prim.h
r211 r921 30 30 */ 31 31 32 #ifndef HUGO_PRIM_H33 #define HUGO_PRIM_H32 #ifndef LEMON_PRIM_H 33 #define LEMON_PRIM_H 34 34 35 35 #include <fib_heap.h> 36 36 #include <invalid.h> 37 37 38 namespace hugo{38 namespace lemon { 39 39 40 40 template <typename Graph, typename T,
Note: See TracChangeset
for help on using the changeset viewer.