test/Makefile.am
author deba
Tue, 17 Oct 2006 10:50:57 +0000
changeset 2247 269a0dcee70b
parent 2207 75a29ac69c19
child 2290 f30867b359a8
permissions -rw-r--r--
Update the Path concept
Concept check for paths

DirPath renamed to Path
The interface updated to the new lemon interface
Make difference between the empty path and the path from one node
Builder interface have not been changed
// I wanted but there was not accordance about it

UPath is removed
It was a buggy implementation, it could not iterate on the
nodes in the right order
Right way to use undirected paths => path of edges in undirected graphs

The tests have been modified to the current implementation
     1 EXTRA_DIST += \
     2 	test/Makefile \
     3 	test/preflow_graph.dim \
     4 	test/dijkstra_test.lgf
     5 
     6 noinst_HEADERS += \
     7 	test/test_tools.h \
     8 	test/graph_test.h \
     9 	test/map_test.h \
    10 	test/graph_utils_test.h \
    11 	test/heap_test.h
    12 
    13 check_PROGRAMS += \
    14 	test/all_pairs_shortest_path_test \
    15 	test/arborescence_test \
    16 	test/bfs_test \
    17 	test/bipartite_matching_test \
    18 	test/bpugraph_test \
    19 	test/counter_test \
    20 	test/dfs_test \
    21 	test/dijkstra_test \
    22 	test/dim_test \
    23 	test/edge_set_test \
    24 	test/graph_adaptor_test \
    25 	test/graph_test \
    26 	test/graph_utils_test \
    27 	test/heap_test \
    28 	test/kruskal_test \
    29 	test/maps_test \
    30 	test/matrix_maps_test \
    31 	test/max_matching_test \
    32 	test/min_cost_flow_test \
    33 	test/path_test \
    34 	test/polynomial_test \
    35 	test/preflow_test \
    36 	test/radix_sort_test \
    37 	test/refptr_test \
    38 	test/simann_test \
    39 	test/suurballe_test \
    40 	test/test_tools_fail \
    41 	test/test_tools_pass \
    42 	test/time_measure_test \
    43 	test/ugraph_test \
    44 	test/unionfind_test
    45 
    46 if HAVE_GLPK
    47 check_PROGRAMS += test/lp_test test/mip_test
    48 else !HAVE_GLPK
    49 if HAVE_CPLEX
    50 check_PROGRAMS += test/lp_test test/mip_test
    51 endif HAVE_CPLEX
    52 endif !HAVE_GLPK
    53 
    54 TESTS += $(check_PROGRAMS)
    55 XFAIL_TESTS += test/test_tools_fail$(EXEEXT)
    56 
    57 test_all_pairs_shortest_path_test_SOURCES = test/all_pairs_shortest_path_test.cc
    58 test_arborescence_test_SOURCES = test/arborescence_test.cc
    59 test_bfs_test_SOURCES = test/bfs_test.cc
    60 test_bipartite_matching_test_SOURCES = test/bipartite_matching_test.cc
    61 test_bpugraph_test_SOURCES = test/bpugraph_test.cc
    62 test_counter_test_SOURCES = test/counter_test.cc
    63 test_dfs_test_SOURCES = test/dfs_test.cc
    64 test_dijkstra_test_SOURCES = test/dijkstra_test.cc
    65 test_dim_test_SOURCES = test/dim_test.cc
    66 test_edge_set_test_SOURCES = test/edge_set_test.cc
    67 test_graph_adaptor_test_SOURCES = test/graph_adaptor_test.cc
    68 test_graph_test_SOURCES = test/graph_test.cc
    69 test_graph_utils_test_SOURCES = test/graph_utils_test.cc
    70 test_heap_test_SOURCES = test/heap_test.cc
    71 test_kruskal_test_SOURCES = test/kruskal_test.cc
    72 test_maps_test_SOURCES = test/maps_test.cc
    73 test_matrix_maps_test_SOURCES = test/matrix_maps_test.cc
    74 test_max_matching_test_SOURCES = test/max_matching_test.cc
    75 test_min_cost_flow_test_SOURCES = test/min_cost_flow_test.cc
    76 test_path_test_SOURCES = test/path_test.cc
    77 test_polynomial_test_SOURCES = test/polynomial_test.cc
    78 test_preflow_test_SOURCES = test/preflow_test.cc
    79 test_radix_sort_test_SOURCES = test/radix_sort_test.cc
    80 test_refptr_test_SOURCES = test/refptr_test.cc
    81 test_simann_test_SOURCES = test/simann_test.cc
    82 test_suurballe_test_SOURCES = test/suurballe_test.cc
    83 test_test_tools_fail_SOURCES = test/test_tools_fail.cc
    84 test_test_tools_pass_SOURCES = test/test_tools_pass.cc
    85 test_time_measure_test_SOURCES = test/time_measure_test.cc
    86 test_ugraph_test_SOURCES = test/ugraph_test.cc
    87 test_unionfind_test_SOURCES = test/unionfind_test.cc
    88 
    89 test_lp_test_SOURCES = test/lp_test.cc
    90 test_lp_test_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
    91 test_mip_test_SOURCES = test/mip_test.cc
    92 test_mip_test_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)