[Lemon-commits] Peter Kovacs: Rename max_matching.h to matching....

Lemon HG hg at lemon.cs.elte.hu
Sat Apr 18 09:55:40 CEST 2009


details:   http://lemon.cs.elte.hu/hg/lemon/rev/d657c71db7db
changeset: 626:d657c71db7db
user:      Peter Kovacs <kpeter [at] inf.elte.hu>
date:      Fri Apr 17 09:58:50 2009 +0200
description:
	Rename max_matching.h to matching.h (#265)

diffstat:

 lemon/Makefile.am         |  2 +-
 lemon/max_matching.h      |    
 test/CMakeLists.txt       |  2 +-
 test/Makefile.am          |  4 ++--
 test/max_matching_test.cc |  2 +-
 tools/dimacs-solver.cc    |  2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diffs (75 lines):

diff --git a/lemon/Makefile.am b/lemon/Makefile.am
--- a/lemon/Makefile.am
+++ b/lemon/Makefile.am
@@ -89,8 +89,8 @@
 	lemon/lp_skeleton.h \
 	lemon/list_graph.h \
 	lemon/maps.h \
+	lemon/matching.h \
 	lemon/math.h \
-	lemon/max_matching.h \
 	lemon/min_cost_arborescence.h \
 	lemon/nauty_reader.h \
 	lemon/path.h \
diff --git a/lemon/max_matching.h b/lemon/matching.h
rename from lemon/max_matching.h
rename to lemon/matching.h
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -29,7 +29,7 @@
   heap_test
   kruskal_test
   maps_test
-  max_matching_test
+  matching_test
   min_cost_arborescence_test
   path_test
   preflow_test
diff --git a/test/Makefile.am b/test/Makefile.am
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -25,7 +25,7 @@
 	test/heap_test \
 	test/kruskal_test \
 	test/maps_test \
-	test/max_matching_test \
+	test/matching_test \
 	test/min_cost_arborescence_test \
 	test/path_test \
 	test/preflow_test \
@@ -70,7 +70,7 @@
 test_lp_test_SOURCES = test/lp_test.cc
 test_maps_test_SOURCES = test/maps_test.cc
 test_mip_test_SOURCES = test/mip_test.cc
-test_max_matching_test_SOURCES = test/max_matching_test.cc
+test_matching_test_SOURCES = test/matching_test.cc
 test_min_cost_arborescence_test_SOURCES = test/min_cost_arborescence_test.cc
 test_path_test_SOURCES = test/path_test.cc
 test_preflow_test_SOURCES = test/preflow_test.cc
diff --git a/test/max_matching_test.cc b/test/matching_test.cc
rename from test/max_matching_test.cc
rename to test/matching_test.cc
--- a/test/max_matching_test.cc
+++ b/test/matching_test.cc
@@ -22,7 +22,7 @@
 #include <queue>
 #include <cstdlib>
 
-#include <lemon/max_matching.h>
+#include <lemon/matching.h>
 #include <lemon/smart_graph.h>
 #include <lemon/concepts/graph.h>
 #include <lemon/concepts/maps.h>
diff --git a/tools/dimacs-solver.cc b/tools/dimacs-solver.cc
--- a/tools/dimacs-solver.cc
+++ b/tools/dimacs-solver.cc
@@ -42,7 +42,7 @@
 
 #include <lemon/dijkstra.h>
 #include <lemon/preflow.h>
-#include <lemon/max_matching.h>
+#include <lemon/matching.h>
 
 using namespace lemon;
 typedef SmartDigraph Digraph;



More information about the Lemon-commits mailing list