COIN-OR::LEMON - Graph Library

source: lemon-0.x/test/Makefile.am @ 2026:8d49961ec50f

Last change on this file since 2026:8d49961ec50f was 2025:93fcadf94ab0, checked in by Balazs Dezso, 18 years ago

Bugfix in the minimum cost arborescence algorithm
Dual solution computation and interface for algorithm
Optimality test on random graph

File size: 2.1 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        counter_test \
19        dfs_test \
20        dijkstra_test \
21        edge_set_test \
22        graph_test \
23        graph_adaptor_test \
24        graph_utils_test \
25        kruskal_test \
26        maps_test \
27        matrix_maps_test \
28        max_matching_test \
29        min_cost_flow_test \
30        suurballe_test \
31        path_test \
32        preflow_test \
33        radix_sort_test \
34        refptr_test \
35        test_tools_fail \
36        test_tools_pass \
37        time_measure_test \
38        unionfind_test \
39        ugraph_test \
40        xy_test \
41        heap_test \
42        simann_test
43
44if HAVE_GLPK
45check_PROGRAMS += lp_test
46else !HAVE_GLPK
47if HAVE_CPLEX
48check_PROGRAMS += lp_test
49endif HAVE_CPLEX
50endif !HAVE_GLPK
51
52TESTS = $(check_PROGRAMS)
53XFAIL_TESTS = test_tools_fail$(EXEEXT)
54
55all_pairs_shortest_path_test_SOURCES = all_pairs_shortest_path_test.cc
56arborescence_test_SOURCES = arborescence_test.cc
57bfs_test_SOURCES = bfs_test.cc
58counter_test_SOURCES = counter_test.cc
59dfs_test_SOURCES = dfs_test.cc
60dijkstra_test_SOURCES = dijkstra_test.cc
61edge_set_test_SOURCES = edge_set_test.cc
62graph_test_SOURCES = graph_test.cc
63graph_utils_test_SOURCES = graph_utils_test.cc
64graph_adaptor_test_SOURCES = graph_adaptor_test.cc
65kruskal_test_SOURCES = kruskal_test.cc
66maps_test_SOURCES = maps_test.cc
67matrix_maps_test_SOURCES = matrix_maps_test.cc
68min_cost_flow_test_SOURCES = min_cost_flow_test.cc
69max_matching_test_SOURCES = max_matching_test.cc
70suurballe_test_SOURCES = suurballe_test.cc
71path_test_SOURCES = path_test.cc
72radix_sort_test_SOURCES = radix_sort_test.cc
73refptr_test_SOURCES = refptr_test.cc
74preflow_test_SOURCES = preflow_test.cc
75time_measure_test_SOURCES = time_measure_test.cc
76test_tools_fail_SOURCES = test_tools_fail.cc
77test_tools_pass_SOURCES = test_tools_pass.cc
78unionfind_test_SOURCES = unionfind_test.cc
79xy_test_SOURCES = xy_test.cc
80ugraph_test_SOURCES = ugraph_test.cc
81heap_test_SOURCES = heap_test.cc
82simann_test_SOURCES = simann_test.cc
83
84lp_test_SOURCES = lp_test.cc
85lp_test_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
Note: See TracBrowser for help on using the repository browser.