COIN-OR::LEMON - Graph Library

source: lemon-0.x/test/Makefile.am @ 2043:54f80cf6ac86

Last change on this file since 2043:54f80cf6ac86 was 2040:c7bd55c0d820, checked in by Balazs Dezso, 18 years ago

Bipartite Graph Max Cardinality Matching (Hopcroft-Karp)
Test for it

Some BpUgraph? improvments

File size: 2.2 KB
Line 
1AM_CPPFLAGS = -I$(top_srcdir) -fno-inline
2LDADD = $(top_builddir)/lemon/libemon.la
3
4EXTRA_DIST = preflow_graph.dim dijkstra_test.lgf
5
6noinst_HEADERS = \
7        test_tools.h \
8        graph_test.h \
9        map_test.h \
10        graph_utils_test.h \
11        heap_test.h
12
13
14check_PROGRAMS = \
15        all_pairs_shortest_path_test \
16        arborescence_test \
17        bfs_test \
18        bipartite_matching_test \
19        counter_test \
20        dfs_test \
21        dijkstra_test \
22        edge_set_test \
23        graph_test \
24        graph_adaptor_test \
25        graph_utils_test \
26        kruskal_test \
27        maps_test \
28        matrix_maps_test \
29        max_matching_test \
30        min_cost_flow_test \
31        suurballe_test \
32        path_test \
33        preflow_test \
34        radix_sort_test \
35        refptr_test \
36        test_tools_fail \
37        test_tools_pass \
38        time_measure_test \
39        unionfind_test \
40        ugraph_test \
41        xy_test \
42        heap_test \
43        simann_test
44
45if HAVE_GLPK
46check_PROGRAMS += lp_test
47else !HAVE_GLPK
48if HAVE_CPLEX
49check_PROGRAMS += lp_test
50endif HAVE_CPLEX
51endif !HAVE_GLPK
52
53TESTS = $(check_PROGRAMS)
54XFAIL_TESTS = test_tools_fail$(EXEEXT)
55
56all_pairs_shortest_path_test_SOURCES = all_pairs_shortest_path_test.cc
57arborescence_test_SOURCES = arborescence_test.cc
58bfs_test_SOURCES = bfs_test.cc
59bipartite_matching_test_SOURCES = bipartite_matching_test.cc
60counter_test_SOURCES = counter_test.cc
61dfs_test_SOURCES = dfs_test.cc
62dijkstra_test_SOURCES = dijkstra_test.cc
63edge_set_test_SOURCES = edge_set_test.cc
64graph_test_SOURCES = graph_test.cc
65graph_utils_test_SOURCES = graph_utils_test.cc
66graph_adaptor_test_SOURCES = graph_adaptor_test.cc
67kruskal_test_SOURCES = kruskal_test.cc
68maps_test_SOURCES = maps_test.cc
69matrix_maps_test_SOURCES = matrix_maps_test.cc
70min_cost_flow_test_SOURCES = min_cost_flow_test.cc
71max_matching_test_SOURCES = max_matching_test.cc
72suurballe_test_SOURCES = suurballe_test.cc
73path_test_SOURCES = path_test.cc
74radix_sort_test_SOURCES = radix_sort_test.cc
75refptr_test_SOURCES = refptr_test.cc
76preflow_test_SOURCES = preflow_test.cc
77time_measure_test_SOURCES = time_measure_test.cc
78test_tools_fail_SOURCES = test_tools_fail.cc
79test_tools_pass_SOURCES = test_tools_pass.cc
80unionfind_test_SOURCES = unionfind_test.cc
81xy_test_SOURCES = xy_test.cc
82ugraph_test_SOURCES = ugraph_test.cc
83heap_test_SOURCES = heap_test.cc
84simann_test_SOURCES = simann_test.cc
85
86lp_test_SOURCES = lp_test.cc
87lp_test_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
Note: See TracBrowser for help on using the repository browser.