COIN-OR::LEMON - Graph Library

source: lemon-0.x/test/Makefile.am @ 1865:dcefd1d1377f

Last change on this file since 1865:dcefd1d1377f was 1847:7cbc12e42482, checked in by Alpar Juttner, 18 years ago
  • Changed and improved Timer interface
    • several new member functions
    • reset() -> restart() renaming
    • TimeReport?: a Timer that prints a report on destruction.
  • counter.h: a tool to measure the number of streps of algorithms.
  • New documentation module for time measuring and counting.
File size: 1.9 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
13check_PROGRAMS = \
14        all_pairs_shortest_path_test \
15        bfs_test \
16        counter_test \
17        dfs_test \
18        dijkstra_test \
19        graph_test \
20        graph_adaptor_test \
21        graph_utils_test \
22        kruskal_test \
23        max_matching_test \
24        maps_test \
25        matrix_maps_test \
26        min_cost_flow_test \
27        suurballe_test \
28        path_test \
29        preflow_test \
30        radix_sort_test \
31        test_tools_fail \
32        test_tools_pass \
33        time_measure_test \
34        unionfind_test \
35        undir_graph_test \
36        xy_test \
37        heap_test
38
39if HAVE_GLPK
40check_PROGRAMS += lp_test
41else !HAVE_GLPK
42if HAVE_CPLEX
43check_PROGRAMS += lp_test
44endif HAVE_CPLEX
45endif !HAVE_GLPK
46
47TESTS = $(check_PROGRAMS)
48XFAIL_TESTS = test_tools_fail$(EXEEXT)
49
50all_pairs_shortest_path_test_SOURCES = all_pairs_shortest_path_test.cc
51bfs_test_SOURCES = bfs_test.cc
52counter_test_SOURCES = counter_test.cc
53dfs_test_SOURCES = dfs_test.cc
54dijkstra_test_SOURCES = dijkstra_test.cc
55graph_test_SOURCES = graph_test.cc
56graph_utils_test_SOURCES = graph_utils_test.cc
57graph_adaptor_test_SOURCES = graph_adaptor_test.cc
58kruskal_test_SOURCES = kruskal_test.cc
59maps_test_SOURCES = maps_test.cc
60matrix_maps_test_SOURCES = matrix_maps_test.cc
61min_cost_flow_test_SOURCES = min_cost_flow_test.cc
62max_matching_test_SOURCES = max_matching_test.cc
63suurballe_test_SOURCES = suurballe_test.cc
64path_test_SOURCES = path_test.cc
65radix_sort_test_SOURCES = radix_sort_test.cc
66preflow_test_SOURCES = preflow_test.cc
67time_measure_test_SOURCES = time_measure_test.cc
68test_tools_fail_SOURCES = test_tools_fail.cc
69test_tools_pass_SOURCES = test_tools_pass.cc
70unionfind_test_SOURCES = unionfind_test.cc
71xy_test_SOURCES = xy_test.cc
72undir_graph_test_SOURCES = undir_graph_test.cc
73heap_test_SOURCES = heap_test.cc
74
75lp_test_SOURCES = lp_test.cc
76lp_test_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
Note: See TracBrowser for help on using the repository browser.