test/Makefile.am
author deba
Wed, 01 Mar 2006 10:25:30 +0000
changeset 1991 d7442141d9ef
parent 1962 c1c3a0fae8a1
child 2025 93fcadf94ab0
permissions -rw-r--r--
The graph adadptors can be alteration observed.
In most cases it uses the adapted graph alteration notifiers.
Only special case is now the UndirGraphAdaptor, where
we have to proxy the signals from the graph.

The SubBidirGraphAdaptor is removed, because it doest not
gives more feature than the EdgeSubGraphAdaptor<UndirGraphAdaptor<Graph>>.

The ResGraphAdaptor is based on this composition.
     1 AM_CPPFLAGS = -I$(top_srcdir) -fno-inline
     2 LDADD = $(top_builddir)/lemon/libemon.la
     3 
     4 EXTRA_DIST = preflow_graph.dim dijkstra_test.lgf
     5 
     6 noinst_HEADERS = \
     7 	test_tools.h \
     8 	graph_test.h \
     9 	map_test.h \
    10 	graph_utils_test.h \
    11 	heap_test.h
    12 
    13 
    14 check_PROGRAMS = \
    15 	all_pairs_shortest_path_test \
    16 	bfs_test \
    17 	counter_test \
    18 	dfs_test \
    19 	dijkstra_test \
    20 	edge_set_test \
    21 	graph_test \
    22 	graph_adaptor_test \
    23 	graph_utils_test \
    24 	kruskal_test \
    25 	maps_test \
    26 	matrix_maps_test \
    27 	max_matching_test \
    28 	min_cost_flow_test \
    29 	suurballe_test \
    30 	path_test \
    31 	preflow_test \
    32 	radix_sort_test \
    33 	refptr_test \
    34 	test_tools_fail \
    35 	test_tools_pass \
    36 	time_measure_test \
    37 	unionfind_test \
    38 	ugraph_test \
    39 	xy_test \
    40 	heap_test \
    41 	simann_test
    42 
    43 if HAVE_GLPK
    44 check_PROGRAMS += lp_test
    45 else !HAVE_GLPK
    46 if HAVE_CPLEX
    47 check_PROGRAMS += lp_test
    48 endif HAVE_CPLEX
    49 endif !HAVE_GLPK
    50 
    51 TESTS = $(check_PROGRAMS)
    52 XFAIL_TESTS = test_tools_fail$(EXEEXT)
    53 
    54 all_pairs_shortest_path_test_SOURCES = all_pairs_shortest_path_test.cc
    55 bfs_test_SOURCES = bfs_test.cc
    56 counter_test_SOURCES = counter_test.cc
    57 dfs_test_SOURCES = dfs_test.cc
    58 dijkstra_test_SOURCES = dijkstra_test.cc
    59 edge_set_test_SOURCES = edge_set_test.cc
    60 graph_test_SOURCES = graph_test.cc
    61 graph_utils_test_SOURCES = graph_utils_test.cc
    62 graph_adaptor_test_SOURCES = graph_adaptor_test.cc
    63 kruskal_test_SOURCES = kruskal_test.cc
    64 maps_test_SOURCES = maps_test.cc
    65 matrix_maps_test_SOURCES = matrix_maps_test.cc
    66 min_cost_flow_test_SOURCES = min_cost_flow_test.cc
    67 max_matching_test_SOURCES = max_matching_test.cc
    68 suurballe_test_SOURCES = suurballe_test.cc
    69 path_test_SOURCES = path_test.cc
    70 radix_sort_test_SOURCES = radix_sort_test.cc
    71 refptr_test_SOURCES = refptr_test.cc
    72 preflow_test_SOURCES = preflow_test.cc
    73 time_measure_test_SOURCES = time_measure_test.cc
    74 test_tools_fail_SOURCES = test_tools_fail.cc
    75 test_tools_pass_SOURCES = test_tools_pass.cc
    76 unionfind_test_SOURCES = unionfind_test.cc
    77 xy_test_SOURCES = xy_test.cc
    78 ugraph_test_SOURCES = ugraph_test.cc
    79 heap_test_SOURCES = heap_test.cc
    80 simann_test_SOURCES = simann_test.cc
    81 
    82 lp_test_SOURCES = lp_test.cc
    83 lp_test_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)