COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/test/Makefile.am @ 962:1a770e9f80b2

Last change on this file since 962:1a770e9f80b2 was 962:1a770e9f80b2, checked in by Mihaly Barasz, 19 years ago

Undirect graph implementation.
Not yet done, untested.

File size: 1.2 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 \
[946]17        graph_utils_test \
[810]18        kruskal_test \
[899]19        min_cost_flow_test \
20        suurballe_test \
[820]21        path_test \
[833]22        preflow_test \
[810]23        test_tools_fail \
24        test_tools_pass \
[790]25        time_measure_test \
[810]26        unionfind_test \
[962]27        undir_graph_test \
[810]28        xy_test
[790]29
[542]30TESTS = $(check_PROGRAMS)
[727]31XFAIL_TESTS = test_tools_fail
[542]32
[774]33bfs_test_SOURCES = bfs_test.cc
[780]34dfs_test_SOURCES = dfs_test.cc
[790]35dijkstra_test_SOURCES = dijkstra_test.cc
36graph_test_SOURCES = graph_test.cc
[946]37graph_utils_test_SOURCES = graph_utils_test.cc
[878]38graph_wrapper_test_SOURCES = graph_wrapper_test.cc
[810]39kruskal_test_SOURCES = kruskal_test.cc
[899]40min_cost_flow_test_SOURCES = min_cost_flow_test.cc
41suurballe_test_SOURCES = suurballe_test.cc
[820]42path_test_SOURCES = path_test.cc
[833]43preflow_test_SOURCES = preflow_test.cc
[790]44time_measure_test_SOURCES = time_measure_test.cc
45test_tools_fail_SOURCES = test_tools_fail.cc
46test_tools_pass_SOURCES = test_tools_pass.cc
[774]47unionfind_test_SOURCES = unionfind_test.cc
[727]48xy_test_SOURCES = xy_test.cc
[962]49undir_graph_test_SOURCES = undir_graph_test.cc
[727]50
Note: See TracBrowser for help on using the repository browser.