COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/test/Makefile.am @ 1041:9d503ce002db

Last change on this file since 1041:9d503ce002db was 1041:9d503ce002db, checked in by Alpar Juttner, 19 years ago
  • Several convenience maps added to maps.h
  • Improvements in doc
File size: 1.3 KB
RevLine 
[542]1AM_CPPFLAGS = -I$(top_srcdir)/src
2
[895]3EXTRA_DIST = preflow_graph.dim #input file for preflow_test.cc
[843]4
[946]5noinst_HEADERS = \
6        test_tools.h \
7        graph_test.h \
8        sym_graph_test.h \
9        map_test.h \
10        graph_utils_test.h
[727]11
[810]12check_PROGRAMS = \
13        bfs_test \
14        dfs_test \
15        dijkstra_test \
[790]16        graph_test \
[970]17        graph_wrapper_test \
[946]18        graph_utils_test \
[810]19        kruskal_test \
[1041]20        maps_test \
[899]21        min_cost_flow_test \
22        suurballe_test \
[820]23        path_test \
[833]24        preflow_test \
[810]25        test_tools_fail \
26        test_tools_pass \
[790]27        time_measure_test \
[810]28        unionfind_test \
[962]29        undir_graph_test \
[810]30        xy_test
[790]31
[542]32TESTS = $(check_PROGRAMS)
[727]33XFAIL_TESTS = test_tools_fail
[542]34
[774]35bfs_test_SOURCES = bfs_test.cc
[780]36dfs_test_SOURCES = dfs_test.cc
[790]37dijkstra_test_SOURCES = dijkstra_test.cc
38graph_test_SOURCES = graph_test.cc
[946]39graph_utils_test_SOURCES = graph_utils_test.cc
[878]40graph_wrapper_test_SOURCES = graph_wrapper_test.cc
[810]41kruskal_test_SOURCES = kruskal_test.cc
[1041]42maps_test_SOURCES = maps_test.cc
[899]43min_cost_flow_test_SOURCES = min_cost_flow_test.cc
44suurballe_test_SOURCES = suurballe_test.cc
[820]45path_test_SOURCES = path_test.cc
[833]46preflow_test_SOURCES = preflow_test.cc
[790]47time_measure_test_SOURCES = time_measure_test.cc
48test_tools_fail_SOURCES = test_tools_fail.cc
49test_tools_pass_SOURCES = test_tools_pass.cc
[774]50unionfind_test_SOURCES = unionfind_test.cc
[727]51xy_test_SOURCES = xy_test.cc
[962]52undir_graph_test_SOURCES = undir_graph_test.cc
[727]53
Note: See TracBrowser for help on using the repository browser.