test/Makefile.am
changeset 2207 75a29ac69c19
parent 2197 921923afd57a
child 2231 06faf3f06d67
equal deleted inserted replaced
17:bb2979e243bf 18:6c3a88ee919d
    16 	test/bfs_test \
    16 	test/bfs_test \
    17 	test/bipartite_matching_test \
    17 	test/bipartite_matching_test \
    18 	test/counter_test \
    18 	test/counter_test \
    19 	test/dfs_test \
    19 	test/dfs_test \
    20 	test/dijkstra_test \
    20 	test/dijkstra_test \
       
    21 	test/dim_test \
    21 	test/edge_set_test \
    22 	test/edge_set_test \
    22 	test/graph_adaptor_test \
    23 	test/graph_adaptor_test \
    23 	test/graph_test \
    24 	test/graph_test \
    24 	test/graph_utils_test \
    25 	test/graph_utils_test \
    25 	test/heap_test \
    26 	test/heap_test \
    37 	test/suurballe_test \
    38 	test/suurballe_test \
    38 	test/test_tools_fail \
    39 	test/test_tools_fail \
    39 	test/test_tools_pass \
    40 	test/test_tools_pass \
    40 	test/time_measure_test \
    41 	test/time_measure_test \
    41 	test/ugraph_test \
    42 	test/ugraph_test \
    42 	test/unionfind_test \
    43 	test/unionfind_test
    43 	test/xy_test
       
    44 
    44 
    45 if HAVE_GLPK
    45 if HAVE_GLPK
    46 check_PROGRAMS += test/lp_test test/mip_test
    46 check_PROGRAMS += test/lp_test test/mip_test
    47 else !HAVE_GLPK
    47 else !HAVE_GLPK
    48 if HAVE_CPLEX
    48 if HAVE_CPLEX
    58 test_bfs_test_SOURCES = test/bfs_test.cc
    58 test_bfs_test_SOURCES = test/bfs_test.cc
    59 test_bipartite_matching_test_SOURCES = test/bipartite_matching_test.cc
    59 test_bipartite_matching_test_SOURCES = test/bipartite_matching_test.cc
    60 test_counter_test_SOURCES = test/counter_test.cc
    60 test_counter_test_SOURCES = test/counter_test.cc
    61 test_dfs_test_SOURCES = test/dfs_test.cc
    61 test_dfs_test_SOURCES = test/dfs_test.cc
    62 test_dijkstra_test_SOURCES = test/dijkstra_test.cc
    62 test_dijkstra_test_SOURCES = test/dijkstra_test.cc
       
    63 test_dim_test_SOURCES = test/dim_test.cc
    63 test_edge_set_test_SOURCES = test/edge_set_test.cc
    64 test_edge_set_test_SOURCES = test/edge_set_test.cc
    64 test_graph_adaptor_test_SOURCES = test/graph_adaptor_test.cc
    65 test_graph_adaptor_test_SOURCES = test/graph_adaptor_test.cc
    65 test_graph_test_SOURCES = test/graph_test.cc
    66 test_graph_test_SOURCES = test/graph_test.cc
    66 test_graph_utils_test_SOURCES = test/graph_utils_test.cc
    67 test_graph_utils_test_SOURCES = test/graph_utils_test.cc
    67 test_heap_test_SOURCES = test/heap_test.cc
    68 test_heap_test_SOURCES = test/heap_test.cc
    80 test_test_tools_fail_SOURCES = test/test_tools_fail.cc
    81 test_test_tools_fail_SOURCES = test/test_tools_fail.cc
    81 test_test_tools_pass_SOURCES = test/test_tools_pass.cc
    82 test_test_tools_pass_SOURCES = test/test_tools_pass.cc
    82 test_time_measure_test_SOURCES = test/time_measure_test.cc
    83 test_time_measure_test_SOURCES = test/time_measure_test.cc
    83 test_ugraph_test_SOURCES = test/ugraph_test.cc
    84 test_ugraph_test_SOURCES = test/ugraph_test.cc
    84 test_unionfind_test_SOURCES = test/unionfind_test.cc
    85 test_unionfind_test_SOURCES = test/unionfind_test.cc
    85 test_xy_test_SOURCES = test/xy_test.cc
       
    86 
    86 
    87 test_lp_test_SOURCES = test/lp_test.cc
    87 test_lp_test_SOURCES = test/lp_test.cc
    88 test_lp_test_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
    88 test_lp_test_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
    89 test_mip_test_SOURCES = test/mip_test.cc
    89 test_mip_test_SOURCES = test/mip_test.cc
    90 test_mip_test_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
    90 test_mip_test_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)