# HG changeset patch
# User Peter Kovacs <kpeter@inf.elte.hu>
# Date 2009-04-17 09:58:50
# Node ID d657c71db7dbf53e0ee7c28100ad3a5981183d25
# Parent  7ac52d6a268e196069ae0bbff57b2e7c45b50219

Rename max_matching.h to matching.h (#265)

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;