COIN-OR::LEMON - Graph Library

source: lemon-0.x/test/Makefile.am @ 1727:0c7d717b9538

Last change on this file since 1727:0c7d717b9538 was 1711:1d09b48e8d55, checked in by Balazs Dezso, 19 years ago

All pairs shortest path test

File size: 1.8 KB
RevLine 
[1711]1AM_CPPFLAGS = -I$(top_srcdir) -fno-inline
[1435]2LDADD = $(top_builddir)/lemon/libemon.la
[542]3
[1216]4EXTRA_DIST = preflow_graph.dim dijkstra_test.lgf
[1349]5
[946]6noinst_HEADERS = \
7        test_tools.h \
8        graph_test.h \
9        sym_graph_test.h \
10        map_test.h \
[1206]11        graph_utils_test.h \
12        heap_test.h
[727]13
[810]14check_PROGRAMS = \
[1711]15        all_pairs_shortest_path_test \
[810]16        bfs_test \
17        dfs_test \
18        dijkstra_test \
[790]19        graph_test \
[1401]20        graph_adaptor_test \
[946]21        graph_utils_test \
[810]22        kruskal_test \
[1349]23        max_matching_test \
24        maps_test \
[899]25        min_cost_flow_test \
26        suurballe_test \
[820]27        path_test \
[833]28        preflow_test \
[810]29        test_tools_fail \
30        test_tools_pass \
[790]31        time_measure_test \
[810]32        unionfind_test \
[962]33        undir_graph_test \
[1206]34        xy_test \
35        heap_test
[790]36
[1349]37if HAVE_GLPK
38check_PROGRAMS += lp_test
[1387]39else !HAVE_GLPK
40if HAVE_CPLEX
41check_PROGRAMS += lp_test
42endif HAVE_CPLEX
43endif !HAVE_GLPK
[1349]44
[542]45TESTS = $(check_PROGRAMS)
[1235]46XFAIL_TESTS = test_tools_fail$(EXEEXT)
[542]47
[1711]48all_pairs_shortest_path_test_SOURCES = all_pairs_shortest_path_test.cc
[774]49bfs_test_SOURCES = bfs_test.cc
[780]50dfs_test_SOURCES = dfs_test.cc
[790]51dijkstra_test_SOURCES = dijkstra_test.cc
52graph_test_SOURCES = graph_test.cc
[946]53graph_utils_test_SOURCES = graph_utils_test.cc
[1401]54graph_adaptor_test_SOURCES = graph_adaptor_test.cc
[810]55kruskal_test_SOURCES = kruskal_test.cc
[1041]56maps_test_SOURCES = maps_test.cc
[899]57min_cost_flow_test_SOURCES = min_cost_flow_test.cc
[1094]58max_matching_test_SOURCES = max_matching_test.cc
[899]59suurballe_test_SOURCES = suurballe_test.cc
[820]60path_test_SOURCES = path_test.cc
[833]61preflow_test_SOURCES = preflow_test.cc
[790]62time_measure_test_SOURCES = time_measure_test.cc
63test_tools_fail_SOURCES = test_tools_fail.cc
64test_tools_pass_SOURCES = test_tools_pass.cc
[774]65unionfind_test_SOURCES = unionfind_test.cc
[727]66xy_test_SOURCES = xy_test.cc
[962]67undir_graph_test_SOURCES = undir_graph_test.cc
[1206]68heap_test_SOURCES = heap_test.cc
[1324]69
70lp_test_SOURCES = lp_test.cc
[1387]71lp_test_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
Note: See TracBrowser for help on using the repository browser.