COIN-OR::LEMON - Graph Library

source: lemon-0.x/test/Makefile.am @ 2363:2aabce558574

Last change on this file since 2363:2aabce558574 was 2363:2aabce558574, checked in by Balazs Dezso, 17 years ago

Changes on the LP interface

_FixId => LpId?

  • handling of not common ids soplex

LpGlpk? row and col erase bug fix

  • calling lpx_std_basis before simplex

LpSoplex?

  • added getter functions
  • better m4 file
  • integration to the tests
  • better handling of unsolved lps
File size: 3.1 KB
RevLine 
[2108]1EXTRA_DIST += \
[2119]2        test/Makefile \
[2108]3        test/preflow_graph.dim \
4        test/dijkstra_test.lgf
[542]5
[2108]6noinst_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
[1349]12
[2108]13check_PROGRAMS += \
14        test/all_pairs_shortest_path_test \
15        test/arborescence_test \
16        test/bfs_test \
17        test/bipartite_matching_test \
[2231]18        test/bpugraph_test \
[2108]19        test/counter_test \
20        test/dfs_test \
21        test/dijkstra_test \
[2207]22        test/dim_test \
[2108]23        test/edge_set_test \
24        test/graph_adaptor_test \
[2290]25        test/graph_copy_test \
[2108]26        test/graph_test \
27        test/graph_utils_test \
28        test/heap_test \
29        test/kruskal_test \
30        test/maps_test \
31        test/matrix_maps_test \
32        test/max_matching_test \
33        test/min_cost_flow_test \
34        test/path_test \
35        test/polynomial_test \
36        test/preflow_test \
37        test/radix_sort_test \
38        test/refptr_test \
39        test/simann_test \
40        test/suurballe_test \
41        test/test_tools_fail \
42        test/test_tools_pass \
43        test/time_measure_test \
44        test/ugraph_test \
[2207]45        test/unionfind_test
[790]46
[1349]47if HAVE_GLPK
[2197]48check_PROGRAMS += test/lp_test test/mip_test
[1387]49else !HAVE_GLPK
50if HAVE_CPLEX
[2197]51check_PROGRAMS += test/lp_test test/mip_test
[2363]52else !HAVE_CPLEX
53if HAVE_SOPLEX
54check_PROGRAMS += test/lp_test
55endif HAVE_SOPLEX
56endif !HAVE_CPLEX
[1387]57endif !HAVE_GLPK
[1349]58
[2108]59TESTS += $(check_PROGRAMS)
60XFAIL_TESTS += test/test_tools_fail$(EXEEXT)
[542]61
[2108]62test_all_pairs_shortest_path_test_SOURCES = test/all_pairs_shortest_path_test.cc
63test_arborescence_test_SOURCES = test/arborescence_test.cc
64test_bfs_test_SOURCES = test/bfs_test.cc
65test_bipartite_matching_test_SOURCES = test/bipartite_matching_test.cc
[2231]66test_bpugraph_test_SOURCES = test/bpugraph_test.cc
[2108]67test_counter_test_SOURCES = test/counter_test.cc
68test_dfs_test_SOURCES = test/dfs_test.cc
69test_dijkstra_test_SOURCES = test/dijkstra_test.cc
[2207]70test_dim_test_SOURCES = test/dim_test.cc
[2108]71test_edge_set_test_SOURCES = test/edge_set_test.cc
72test_graph_adaptor_test_SOURCES = test/graph_adaptor_test.cc
[2290]73test_graph_copy_test_SOURCES = test/graph_copy_test.cc
[2108]74test_graph_test_SOURCES = test/graph_test.cc
75test_graph_utils_test_SOURCES = test/graph_utils_test.cc
76test_heap_test_SOURCES = test/heap_test.cc
77test_kruskal_test_SOURCES = test/kruskal_test.cc
78test_maps_test_SOURCES = test/maps_test.cc
79test_matrix_maps_test_SOURCES = test/matrix_maps_test.cc
80test_max_matching_test_SOURCES = test/max_matching_test.cc
81test_min_cost_flow_test_SOURCES = test/min_cost_flow_test.cc
82test_path_test_SOURCES = test/path_test.cc
83test_polynomial_test_SOURCES = test/polynomial_test.cc
84test_preflow_test_SOURCES = test/preflow_test.cc
85test_radix_sort_test_SOURCES = test/radix_sort_test.cc
86test_refptr_test_SOURCES = test/refptr_test.cc
87test_simann_test_SOURCES = test/simann_test.cc
88test_suurballe_test_SOURCES = test/suurballe_test.cc
89test_test_tools_fail_SOURCES = test/test_tools_fail.cc
90test_test_tools_pass_SOURCES = test/test_tools_pass.cc
91test_time_measure_test_SOURCES = test/time_measure_test.cc
92test_ugraph_test_SOURCES = test/ugraph_test.cc
93test_unionfind_test_SOURCES = test/unionfind_test.cc
[1324]94
[2108]95test_lp_test_SOURCES = test/lp_test.cc
[2363]96test_lp_test_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) $(SOPLEX_CXXFLAGS)
[2197]97test_mip_test_SOURCES = test/mip_test.cc
[2363]98test_mip_test_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) $(SOPLEX_CXXFLAGS)
Note: See TracBrowser for help on using the repository browser.