# HG changeset patch
# User marci
# Date 1083862494 0
# Node ID 995bc1f1a3ce4f50a1bbb21099e10e7ea3a74734
# Parent  2d27cbaa982dbd6618b3a4f76fa39e1aea30e281
#include <hugo/ > modifications

diff -r 2d27cbaa982d -r 995bc1f1a3ce src/work/jacint/max_flow.h
--- a/src/work/jacint/max_flow.h	Thu May 06 15:47:42 2004 +0000
+++ b/src/work/jacint/max_flow.h	Thu May 06 16:54:54 2004 +0000
@@ -45,8 +45,8 @@
 
 #include <graph_wrapper.h>
 #include <bfs_iterator.h>
-#include <invalid.h>
-#include <maps.h>
+#include <hugo/invalid.h>
+#include <hugo/maps.h>
 #include <for_each_macros.h>
 
 /// \file
diff -r 2d27cbaa982d -r 995bc1f1a3ce src/work/klao/iter_map.h
--- a/src/work/klao/iter_map.h	Thu May 06 15:47:42 2004 +0000
+++ b/src/work/klao/iter_map.h	Thu May 06 16:54:54 2004 +0000
@@ -10,7 +10,7 @@
 // for memset
 #include <cstring>
 
-#include <invalid.h>
+#include <hugo/invalid.h>
 
 namespace hugo {
 
diff -r 2d27cbaa982d -r 995bc1f1a3ce src/work/marci/bfsit_vs_byhand.cc
--- a/src/work/marci/bfsit_vs_byhand.cc	Thu May 06 15:47:42 2004 +0000
+++ b/src/work/marci/bfsit_vs_byhand.cc	Thu May 06 16:54:54 2004 +0000
@@ -4,8 +4,8 @@
 
 #include <list_graph.h>
 //#include <smart_graph.h>
-#include <dimacs.h>
-#include <time_measure.h>
+#include <hugo/dimacs.h>
+#include <hugo/time_measure.h>
 #include <for_each_macros.h>
 #include <bfs_iterator.h>
 
diff -r 2d27cbaa982d -r 995bc1f1a3ce src/work/marci/bipartite_graph_wrapper.h
--- a/src/work/marci/bipartite_graph_wrapper.h	Thu May 06 15:47:42 2004 +0000
+++ b/src/work/marci/bipartite_graph_wrapper.h	Thu May 06 16:54:54 2004 +0000
@@ -10,7 +10,7 @@
 ///
 ///\author Marton Makai
 
-#include <invalid.h>
+#include <hugo/invalid.h>
 #include <iter_map.h>
 #include <graph_wrapper.h>
 
diff -r 2d27cbaa982d -r 995bc1f1a3ce src/work/marci/bipartite_graph_wrapper_test.cc
--- a/src/work/marci/bipartite_graph_wrapper_test.cc	Thu May 06 15:47:42 2004 +0000
+++ b/src/work/marci/bipartite_graph_wrapper_test.cc	Thu May 06 16:54:54 2004 +0000
@@ -6,12 +6,12 @@
 #include <list_graph.h>
 //#include <smart_graph.h>
 //#include <dimacs.h>
-#include <time_measure.h>
+#include <hugo/time_measure.h>
 #include <for_each_macros.h>
 #include <bfs_iterator.h>
 #include <graph_wrapper.h>
 #include <bipartite_graph_wrapper.h>
-#include <maps.h>
+#include <hugo/maps.h>
 #include <max_flow.h>
 
 using namespace hugo;
diff -r 2d27cbaa982d -r 995bc1f1a3ce src/work/marci/bipartite_matching_try.cc
--- a/src/work/marci/bipartite_matching_try.cc	Thu May 06 15:47:42 2004 +0000
+++ b/src/work/marci/bipartite_matching_try.cc	Thu May 06 16:54:54 2004 +0000
@@ -7,12 +7,12 @@
 #include <list_graph.h>
 //#include <smart_graph.h>
 //#include <dimacs.h>
-#include <time_measure.h>
+#include <hugo/time_measure.h>
 #include <for_each_macros.h>
 #include <bfs_iterator.h>
 #include <graph_wrapper.h>
 #include <bipartite_graph_wrapper.h>
-#include <maps.h>
+#include <hugo/maps.h>
 #include <max_flow.h>
 
 /**
diff -r 2d27cbaa982d -r 995bc1f1a3ce src/work/marci/bipartite_matching_try_2.cc
--- a/src/work/marci/bipartite_matching_try_2.cc	Thu May 06 15:47:42 2004 +0000
+++ b/src/work/marci/bipartite_matching_try_2.cc	Thu May 06 16:54:54 2004 +0000
@@ -7,11 +7,11 @@
 #include <list_graph.h>
 //#include <smart_graph.h>
 //#include <dimacs.h>
-#include <time_measure.h>
+#include <hugo/time_measure.h>
 #include <for_each_macros.h>
 #include <bfs_iterator.h>
 #include <bipartite_graph_wrapper.h>
-#include <maps.h>
+#include <hugo/maps.h>
 #include <max_flow.h>
 
 /**
diff -r 2d27cbaa982d -r 995bc1f1a3ce src/work/marci/bipartite_matching_try_3.cc
--- a/src/work/marci/bipartite_matching_try_3.cc	Thu May 06 15:47:42 2004 +0000
+++ b/src/work/marci/bipartite_matching_try_3.cc	Thu May 06 16:54:54 2004 +0000
@@ -7,11 +7,11 @@
 #include <list_graph.h>
 //#include <smart_graph.h>
 //#include <dimacs.h>
-#include <time_measure.h>
+#include <hugo/time_measure.h>
 #include <for_each_macros.h>
 #include <bfs_iterator.h>
 #include <bipartite_graph_wrapper.h>
-#include <maps.h>
+#include <hugo/maps.h>
 #include <max_flow.h>
 
 using namespace hugo;
diff -r 2d27cbaa982d -r 995bc1f1a3ce src/work/marci/lg_vs_sg.cc
--- a/src/work/marci/lg_vs_sg.cc	Thu May 06 15:47:42 2004 +0000
+++ b/src/work/marci/lg_vs_sg.cc	Thu May 06 16:54:54 2004 +0000
@@ -4,10 +4,10 @@
 #include <string>
 
 #include <list_graph.h>
-#include <smart_graph.h>
-#include <dimacs.h>
+#include <hugo/smart_graph.h>
+#include <hugo/dimacs.h>
 #include <max_flow.h>
-#include <time_measure.h>
+#include <hugo/time_measure.h>
 #include <for_each_macros.h>
 
 using namespace hugo;
diff -r 2d27cbaa982d -r 995bc1f1a3ce src/work/marci/makefile
--- a/src/work/marci/makefile	Thu May 06 15:47:42 2004 +0000
+++ b/src/work/marci/makefile	Thu May 06 16:54:54 2004 +0000
@@ -1,7 +1,7 @@
 CXX2 = g++-2.95
 CXX3=$(CXX)
 BOOSTROOT ?= /home/marci/boost
-INCLUDEDIRS ?= -I../.. -I../../hugo -I.. -I../{marci,jacint,alpar,klao,akos,athos} -I$(BOOSTROOT)
+INCLUDEDIRS ?= -I../.. -I.. -I../{marci,jacint,alpar,klao,akos,athos} -I$(BOOSTROOT)
 
 LEDABINARIES = leda_graph_demo leda_bfs_dfs max_bipartite_matching_demo
 BINARIES = max_flow_demo iterator_bfs_demo macro_test lg_vs_sg bfsit_vs_byhand bipartite_graph_wrapper_test bipartite_matching_try bipartite_matching_try_2 bipartite_matching_try_3 top_sort_test
diff -r 2d27cbaa982d -r 995bc1f1a3ce src/work/marci/max_flow_demo.cc
--- a/src/work/marci/max_flow_demo.cc	Thu May 06 15:47:42 2004 +0000
+++ b/src/work/marci/max_flow_demo.cc	Thu May 06 16:54:54 2004 +0000
@@ -3,9 +3,9 @@
 #include <fstream>
 
 #include <list_graph.h>
-#include <smart_graph.h>
-#include <dimacs.h>
-#include <time_measure.h>
+#include <hugo/smart_graph.h>
+#include <hugo/dimacs.h>
+#include <hugo/time_measure.h>
 //#include <graph_wrapper.h>
 #include <max_flow.h>
 //#include <preflow_res.h>