Changeset 469:04c0631fd332 in lemon-main
- Timestamp:
- 01/12/09 14:37:37 (16 years ago)
- Branch:
- default
- Children:
- 470:81627fa1b007, 515:c35afa9e89e7
- Parents:
- 467:a1155a9e8e09 (diff), 468:68fe66e2b34a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Phase:
- public
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/Makefile.am
r461 r469 61 61 lemon/dim2.h \ 62 62 lemon/dimacs.h \ 63 lemon/edge_set.h \ 63 64 lemon/elevator.h \ 64 65 lemon/error.h \ … … 98 99 lemon/bits/bezier.h \ 99 100 lemon/bits/default_map.h \ 101 lemon/bits/edge_set_extender.h \ 100 102 lemon/bits/enable_if.h \ 101 103 lemon/bits/graph_adaptor_extender.h \ -
lemon/Makefile.am
r468 r469 8 8 9 9 lemon_libemon_la_SOURCES = \ 10 lemon/arg_parser.cc \ 11 lemon/base.cc \ 12 lemon/color.cc \ 13 lemon/random.cc 10 lemon/arg_parser.cc \ 11 lemon/base.cc \ 12 lemon/color.cc \ 13 lemon/lp_base.cc \ 14 lemon/lp_skeleton.cc \ 15 lemon/random.cc 14 16 15 #lemon_libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) $(SOPLEX_CXXFLAGS) $(AM_CXXFLAGS) 16 #lemon_libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS) $(SOPLEX_LIBS) 17 18 lemon_libemon_la_CXXFLAGS = \ 19 $(GLPK_CFLAGS) \ 20 $(CPLEX_CFLAGS) \ 21 $(SOPLEX_CXXFLAGS) \ 22 $(CLP_CXXFLAGS) 23 24 lemon_libemon_la_LDFLAGS = \ 25 $(GLPK_LIBS) \ 26 $(CPLEX_LIBS) \ 27 $(SOPLEX_LIBS) \ 28 $(CLP_LIBS) 29 30 if HAVE_GLPK 31 lemon_libemon_la_SOURCES += lemon/glpk.cc 32 endif 33 34 if HAVE_CPLEX 35 lemon_libemon_la_SOURCES += lemon/cplex.cc 36 endif 37 38 if HAVE_SOPLEX 39 lemon_libemon_la_SOURCES += lemon/soplex.cc 40 endif 41 42 if HAVE_CLP 43 lemon_libemon_la_SOURCES += lemon/clp.cc 44 endif 17 45 18 46 lemon_HEADERS += \ 19 47 lemon/adaptors.h \ 20 48 lemon/arg_parser.h \ 21 49 lemon/assert.h \ 22 lemon/bfs.h \ 23 lemon/bin_heap.h \ 24 lemon/circulation.h \ 25 lemon/color.h \ 50 lemon/bfs.h \ 51 lemon/bin_heap.h \ 52 lemon/circulation.h \ 53 lemon/clp.h \ 54 lemon/color.h \ 26 55 lemon/concept_check.h \ 27 56 lemon/counter.h \ 28 57 lemon/core.h \ 29 lemon/dfs.h \ 30 lemon/dijkstra.h \ 31 lemon/dim2.h \ 32 lemon/dimacs.h \ 58 lemon/cplex.h \ 59 lemon/dfs.h \ 60 lemon/dijkstra.h \ 61 lemon/dim2.h \ 62 lemon/dimacs.h \ 33 63 lemon/edge_set.h \ 34 64 lemon/elevator.h \ 35 65 lemon/error.h \ 36 66 lemon/full_graph.h \ 37 lemon/graph_to_eps.h \ 38 lemon/grid_graph.h \ 67 lemon/glpk.h \ 68 lemon/graph_to_eps.h \ 69 lemon/grid_graph.h \ 39 70 lemon/hypercube_graph.h \ 40 71 lemon/kruskal.h \ … … 42 73 lemon/lgf_reader.h \ 43 74 lemon/lgf_writer.h \ 75 lemon/list_graph.h \ 76 lemon/lp.h \ 77 lemon/lp_base.h \ 78 lemon/lp_skeleton.h \ 44 79 lemon/list_graph.h \ 45 80 lemon/maps.h \ … … 49 84 lemon/path.h \ 50 85 lemon/preflow.h \ 51 lemon/random.h \ 86 lemon/radix_sort.h \ 87 lemon/random.h \ 52 88 lemon/smart_graph.h \ 89 lemon/soplex.h \ 53 90 lemon/suurballe.h \ 54 55 91 lemon/time_measure.h \ 92 lemon/tolerance.h \ 56 93 lemon/unionfind.h 57 94 … … 60 97 lemon/bits/array_map.h \ 61 98 lemon/bits/base_extender.h \ 62 99 lemon/bits/bezier.h \ 63 100 lemon/bits/default_map.h \ 64 101 lemon/bits/edge_set_extender.h \ 65 102 lemon/bits/enable_if.h \ 66 103 lemon/bits/graph_adaptor_extender.h \ 67 104 lemon/bits/graph_extender.h \ 68 105 lemon/bits/map_extender.h \ 69 106 lemon/bits/path_dump.h \ 107 lemon/bits/solver_bits.h \ 70 108 lemon/bits/traits.h \ 71 109 lemon/bits/variant.h \ -
test/CMakeLists.txt
r467 r469 13 13 dim_test 14 14 error_test 15 edge_set_test 15 16 graph_copy_test 16 17 graph_test -
test/CMakeLists.txt
r468 r469 4 4 5 5 SET(TESTS 6 adaptors_test 6 7 bfs_test 8 circulation_test 7 9 counter_test 8 10 dfs_test … … 18 20 heap_test 19 21 kruskal_test 22 lp_test 23 mip_test 20 24 maps_test 21 25 max_matching_test 26 radix_sort_test 27 path_test 28 preflow_test 22 29 random_test 23 path_test30 suurballe_test 24 31 time_measure_test 25 32 unionfind_test) -
test/Makefile.am
r467 r469 15 15 test/dijkstra_test \ 16 16 test/dim_test \ 17 test/edge_set_test \ 17 18 test/error_test \ 18 19 test/graph_copy_test \ … … 52 53 test_dijkstra_test_SOURCES = test/dijkstra_test.cc 53 54 test_dim_test_SOURCES = test/dim_test.cc 55 test_edge_set_test_SOURCES = test/edge_set_test.cc 54 56 test_error_test_SOURCES = test/error_test.cc 55 57 test_graph_copy_test_SOURCES = test/graph_copy_test.cc -
test/Makefile.am
r468 r469 1 1 EXTRA_DIST += \ 2 test/CMakeLists.txt \ 3 test/min_cost_flow_test.lgf \ 4 test/preflow_graph.lgf 2 test/CMakeLists.txt 5 3 6 4 noinst_HEADERS += \ 7 5 test/graph_test.h \ 8 6 test/test_tools.h 9 7 10 8 check_PROGRAMS += \ 9 test/adaptors_test \ 11 10 test/bfs_test \ 12 13 11 test/circulation_test \ 12 test/counter_test \ 14 13 test/dfs_test \ 15 14 test/digraph_test \ 16 15 test/dijkstra_test \ 17 16 test/dim_test \ 18 17 test/edge_set_test \ 19 18 test/error_test \ 20 test/graph_adaptor_test \21 19 test/graph_copy_test \ 22 20 test/graph_test \ 23 21 test/graph_utils_test \ 22 test/hao_orlin_test \ 24 23 test/heap_test \ 25 24 test/kruskal_test \ 26 test/hao_orlin_test \ 27 test/maps_test \ 25 test/maps_test \ 28 26 test/max_matching_test \ 29 test/random_test \ 30 test/path_test \ 31 test/preflow_test \ 32 test/suurballe_test \ 33 test/test_tools_fail \ 34 test/test_tools_pass \ 35 test/time_measure_test \ 27 test/path_test \ 28 test/preflow_test \ 29 test/radix_sort_test \ 30 test/random_test \ 31 test/suurballe_test \ 32 test/test_tools_fail \ 33 test/test_tools_pass \ 34 test/time_measure_test \ 36 35 test/unionfind_test 36 37 if HAVE_LP 38 check_PROGRAMS += test/lp_test 39 endif HAVE_LP 40 if HAVE_MIP 41 check_PROGRAMS += test/mip_test 42 endif HAVE_MIP 37 43 38 44 TESTS += $(check_PROGRAMS) 39 45 XFAIL_TESTS += test/test_tools_fail$(EXEEXT) 40 46 47 test_adaptors_test_SOURCES = test/adaptors_test.cc 41 48 test_bfs_test_SOURCES = test/bfs_test.cc 42 49 test_circulation_test_SOURCES = test/circulation_test.cc … … 48 55 test_edge_set_test_SOURCES = test/edge_set_test.cc 49 56 test_error_test_SOURCES = test/error_test.cc 50 test_graph_adaptor_test_SOURCES = test/graph_adaptor_test.cc51 57 test_graph_copy_test_SOURCES = test/graph_copy_test.cc 52 58 test_graph_test_SOURCES = test/graph_test.cc … … 55 61 test_kruskal_test_SOURCES = test/kruskal_test.cc 56 62 test_hao_orlin_test_SOURCES = test/hao_orlin_test.cc 63 test_lp_test_SOURCES = test/lp_test.cc 57 64 test_maps_test_SOURCES = test/maps_test.cc 65 test_mip_test_SOURCES = test/mip_test.cc 58 66 test_max_matching_test_SOURCES = test/max_matching_test.cc 59 67 test_path_test_SOURCES = test/path_test.cc 60 68 test_preflow_test_SOURCES = test/preflow_test.cc 69 test_radix_sort_test_SOURCES = test/radix_sort_test.cc 61 70 test_suurballe_test_SOURCES = test/suurballe_test.cc 62 71 test_random_test_SOURCES = test/random_test.cc
Note: See TracChangeset
for help on using the changeset viewer.