[Lemon-commits] [lemon_svn] klao: r1233 - in hugo/trunk: . doc src/demo src/lemon src/work src/work/athos src/work/deba src/work/peter

Lemon SVN svn at lemon.cs.elte.hu
Mon Nov 6 20:44:06 CET 2006


Author: klao
Date: Wed Sep 29 18:31:24 2004
New Revision: 1233

Removed:
   hugo/trunk/src/lemon/tight_edge_filter_map.h
   hugo/trunk/src/work/athos/preflow_push.hh
Modified:
   hugo/trunk/AUTHORS
   hugo/trunk/COPYING
   hugo/trunk/LICENSE
   hugo/trunk/doc/Doxyfile
   hugo/trunk/src/demo/sub_graph_wrapper_demo.dim
   hugo/trunk/src/work/Doxyfile
   hugo/trunk/src/work/deba/main.cpp
   hugo/trunk/src/work/peter/Makefile

Log:
hugo -> lemon renaming leftovers


Modified: hugo/trunk/AUTHORS
==============================================================================
--- hugo/trunk/AUTHORS	(original)
+++ hugo/trunk/AUTHORS	Wed Sep 29 18:31:24 2004
@@ -1,4 +1,4 @@
-HUGOlib was started as an inter-university project from two
+LEMON was started as an inter-university project from two
 universities: BME (Budapest University of Technology and Economics,
 Hungary) and ELTE (Eotvos Lorand University, Budapest, Hungary) and
 supported by ETIK (Inter-University Centre for Telecommunications and
@@ -16,7 +16,7 @@
 For every contributor we list the supporters who supported his or her
 work.
 
-So here is (the hopefully complete) list of contributors of the HUGOlib
+So here is (the hopefully complete) list of contributors of the LEMON
 (in alphabetical order). The fields are: name (N), email (E), web-address
 (W), PGP key ID and fingerprint (P), description (D), snail-mail
 address (A), Subversion commit name (C), and the list of supporters (S)

Modified: hugo/trunk/COPYING
==============================================================================
--- hugo/trunk/COPYING	(original)
+++ hugo/trunk/COPYING	Wed Sep 29 18:31:24 2004
@@ -1,8 +1,8 @@
-HUGOlib as a whole is copyrighted by Egerváry Jenõ Kombinatorikus
+LEMON as a whole is copyrighted by Egerváry Jenõ Kombinatorikus
 Optimalizálási Kutatócsoport (Egervary Combinatorial Optimization
 Research Group, EGRES).
 
-You are free to use, modify and distribute HUGOlib under the terms
+You are free to use, modify and distribute LEMON under the terms
 described in the LICENSE file.
 
 This project is supported by

Modified: hugo/trunk/LICENSE
==============================================================================
--- hugo/trunk/LICENSE	(original)
+++ hugo/trunk/LICENSE	Wed Sep 29 18:31:24 2004
@@ -1,4 +1,4 @@
-HUGOlib code without an explicit copyright is covered by the following
+LEMON code without an explicit copyright is covered by the following
 copyright/license:
 
 Copyright (C) 2003-2004 Egervary Jeno Kombinatorikus Optimalizalasi

Modified: hugo/trunk/doc/Doxyfile
==============================================================================
--- hugo/trunk/doc/Doxyfile	(original)
+++ hugo/trunk/doc/Doxyfile	Wed Sep 29 18:31:24 2004
@@ -17,7 +17,7 @@
 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded 
 # by quotes) that should identify the project.
 
-PROJECT_NAME           = HugoLib
+PROJECT_NAME           = LEMON
 
 # The PROJECT_NUMBER tag can be used to enter a project or revision number. 
 # This could be handy for archiving the generated documentation or 
@@ -397,8 +397,8 @@
                          coding_style.dox \
                          groups.dox \
                          namespaces.dox \
-                         ../src/hugo \
-                         ../src/hugo/skeletons \
+                         ../src/lemon \
+                         ../src/lemon/skeletons \
                          ../src/test/test_tools.h
 
 # If the value of the INPUT tag contains directories, you can use the 

Modified: hugo/trunk/src/demo/sub_graph_wrapper_demo.dim
==============================================================================
--- hugo/trunk/src/demo/sub_graph_wrapper_demo.dim	(original)
+++ hugo/trunk/src/demo/sub_graph_wrapper_demo.dim	Wed Sep 29 18:31:24 2004
@@ -1,4 +1,4 @@
-c HUGO max flow problem
+c LEMON max flow problem
 p max 7 9
 n 1 s
 n 7 t

Modified: hugo/trunk/src/work/Doxyfile
==============================================================================
--- hugo/trunk/src/work/Doxyfile	(original)
+++ hugo/trunk/src/work/Doxyfile	Wed Sep 29 18:31:24 2004
@@ -17,13 +17,13 @@
 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded 
 # by quotes) that should identify the project.
 
-PROJECT_NAME           = HugoLib
+PROJECT_NAME           = LEMON
 
 # The PROJECT_NUMBER tag can be used to enter a project or revision number. 
 # This could be handy for archiving the generated documentation or 
 # if some version control system is used.
 
-PROJECT_NUMBER         = 0.1
+PROJECT_NUMBER         = 0.2
 
 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 
 # base path where the generated documentation will be put. 
@@ -395,8 +395,8 @@
 			 ../../doc/graphs.dox \
                          ../../doc/maps.dox ../../doc/coding_style.dox \
                          ../../doc/groups.dox \
-                         ../hugo \
-                         ../hugo/skeletons \
+                         ../lemon \
+                         ../lemon/skeletons \
                          ../test/test_tools.h \
                          klao/path.h \
                          klao/debug.h \

Modified: hugo/trunk/src/work/deba/main.cpp
==============================================================================
--- hugo/trunk/src/work/deba/main.cpp	(original)
+++ hugo/trunk/src/work/deba/main.cpp	Wed Sep 29 18:31:24 2004
@@ -4,7 +4,7 @@
 #include "list_graph.h"
 
 using namespace std;
-using namespace hugo;
+using namespace lemon;
 
 
 

Modified: hugo/trunk/src/work/peter/Makefile
==============================================================================
--- hugo/trunk/src/work/peter/Makefile	(original)
+++ hugo/trunk/src/work/peter/Makefile	Wed Sep 29 18:31:24 2004
@@ -1,6 +1,6 @@
 hier: hierarchygraph.h hierarchygraph_test.cc
-	g++ -Wall -W -I../.. -I../klao -I../../hugo hierarchygraph_test.cc -o test
+	g++ -Wall -W -I../.. -I../klao -I../../lemon hierarchygraph_test.cc -o test
 
 edge: edgepathgraph_test.cc edgepathgraph.h
-	g++ -Wall -W -I../.. -I../klao -I../../hugo edgepathgraph_test.cc -o test
+	g++ -Wall -W -I../.. -I../klao -I../../lemon edgepathgraph_test.cc -o test
 



More information about the Lemon-commits mailing list