COIN-OR::LEMON - Graph Library

source: lemon-0.x/test/Makefile.am @ 1901:723b2b81d900

Last change on this file since 1901:723b2b81d900 was 1901:723b2b81d900, checked in by Balazs Dezso, 18 years ago

Lemon Graph Format uses label instead of id named map.

File size: 1.9 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        map_test.h \
[1206]10        graph_utils_test.h \
11        heap_test.h
[727]12
[1901]13
[810]14check_PROGRAMS = \
[1711]15        all_pairs_shortest_path_test \
[810]16        bfs_test \
[1847]17        counter_test \
[810]18        dfs_test \
19        dijkstra_test \
[790]20        graph_test \
[1401]21        graph_adaptor_test \
[946]22        graph_utils_test \
[810]23        kruskal_test \
[1349]24        maps_test \
[1728]25        matrix_maps_test \
[1901]26        max_matching_test \
[899]27        min_cost_flow_test \
28        suurballe_test \
[820]29        path_test \
[833]30        preflow_test \
[1833]31        radix_sort_test \
[810]32        test_tools_fail \
33        test_tools_pass \
[790]34        time_measure_test \
[810]35        unionfind_test \
[962]36        undir_graph_test \
[1206]37        xy_test \
38        heap_test
[790]39
[1349]40if HAVE_GLPK
41check_PROGRAMS += lp_test
[1387]42else !HAVE_GLPK
43if HAVE_CPLEX
44check_PROGRAMS += lp_test
45endif HAVE_CPLEX
46endif !HAVE_GLPK
[1349]47
[542]48TESTS = $(check_PROGRAMS)
[1235]49XFAIL_TESTS = test_tools_fail$(EXEEXT)
[542]50
[1711]51all_pairs_shortest_path_test_SOURCES = all_pairs_shortest_path_test.cc
[774]52bfs_test_SOURCES = bfs_test.cc
[1847]53counter_test_SOURCES = counter_test.cc
[780]54dfs_test_SOURCES = dfs_test.cc
[790]55dijkstra_test_SOURCES = dijkstra_test.cc
56graph_test_SOURCES = graph_test.cc
[946]57graph_utils_test_SOURCES = graph_utils_test.cc
[1401]58graph_adaptor_test_SOURCES = graph_adaptor_test.cc
[810]59kruskal_test_SOURCES = kruskal_test.cc
[1041]60maps_test_SOURCES = maps_test.cc
[1728]61matrix_maps_test_SOURCES = matrix_maps_test.cc
[899]62min_cost_flow_test_SOURCES = min_cost_flow_test.cc
[1094]63max_matching_test_SOURCES = max_matching_test.cc
[899]64suurballe_test_SOURCES = suurballe_test.cc
[820]65path_test_SOURCES = path_test.cc
[1833]66radix_sort_test_SOURCES = radix_sort_test.cc
[833]67preflow_test_SOURCES = preflow_test.cc
[790]68time_measure_test_SOURCES = time_measure_test.cc
69test_tools_fail_SOURCES = test_tools_fail.cc
70test_tools_pass_SOURCES = test_tools_pass.cc
[774]71unionfind_test_SOURCES = unionfind_test.cc
[727]72xy_test_SOURCES = xy_test.cc
[962]73undir_graph_test_SOURCES = undir_graph_test.cc
[1206]74heap_test_SOURCES = heap_test.cc
[1324]75
76lp_test_SOURCES = lp_test.cc
[1387]77lp_test_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
Note: See TracBrowser for help on using the repository browser.