Changeset 956:4dd3dc8eb5a7 in lemon-main
- Timestamp:
- 10/24/11 21:42:22 (13 years ago)
- Branch:
- default
- Parents:
- 955:7f6eeffe3cd1 (diff), 954:b96574ff36ec (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:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/Makefile.am
r953 r956 2 2 lemon/lemon.pc.in \ 3 3 lemon/lemon.pc.cmake \ 4 lemon/CMakeLists.txt 4 lemon/CMakeLists.txt \ 5 lemon/config.h.cmake 5 6 6 7 pkgconfig_DATA += lemon/lemon.pc … … 9 10 10 11 lemon_libemon_la_SOURCES = \ 11 lemon/arg_parser.cc \ 12 lemon/base.cc \ 13 lemon/color.cc \ 14 lemon/random.cc \ 12 lemon/arg_parser.cc \ 13 lemon/base.cc \ 14 lemon/color.cc \ 15 lemon/lp_base.cc \ 16 lemon/lp_skeleton.cc \ 17 lemon/random.cc \ 15 18 lemon/bits/windows.cc 16 19 17 #lemon_libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) $(SOPLEX_CXXFLAGS) 18 #lemon_libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS) $(SOPLEX_LIBS) 20 nodist_lemon_HEADERS = lemon/config.h 19 21 20 nodist_lemon_HEADERS = lemon/config.h 22 lemon_libemon_la_CXXFLAGS = \ 23 $(AM_CXXFLAGS) \ 24 $(GLPK_CFLAGS) \ 25 $(CPLEX_CFLAGS) \ 26 $(SOPLEX_CXXFLAGS) \ 27 $(CLP_CXXFLAGS) \ 28 $(CBC_CXXFLAGS) 29 30 lemon_libemon_la_LDFLAGS = \ 31 $(GLPK_LIBS) \ 32 $(CPLEX_LIBS) \ 33 $(SOPLEX_LIBS) \ 34 $(CLP_LIBS) \ 35 $(CBC_LIBS) 36 37 if HAVE_GLPK 38 lemon_libemon_la_SOURCES += lemon/glpk.cc 39 endif 40 41 if HAVE_CPLEX 42 lemon_libemon_la_SOURCES += lemon/cplex.cc 43 endif 44 45 if HAVE_SOPLEX 46 lemon_libemon_la_SOURCES += lemon/soplex.cc 47 endif 48 49 if HAVE_CLP 50 lemon_libemon_la_SOURCES += lemon/clp.cc 51 endif 52 53 if HAVE_CBC 54 lemon_libemon_la_SOURCES += lemon/cbc.cc 55 endif 21 56 22 57 lemon_HEADERS += \ 23 lemon/arg_parser.h \ 58 lemon/adaptors.h \ 59 lemon/arg_parser.h \ 24 60 lemon/assert.h \ 25 lemon/bfs.h \ 26 lemon/bin_heap.h \ 27 lemon/color.h \ 61 lemon/bellman_ford.h \ 62 lemon/bfs.h \ 63 lemon/bin_heap.h \ 64 lemon/binomial_heap.h \ 65 lemon/bucket_heap.h \ 66 lemon/capacity_scaling.h \ 67 lemon/cbc.h \ 68 lemon/circulation.h \ 69 lemon/clp.h \ 70 lemon/color.h \ 28 71 lemon/concept_check.h \ 29 lemon/counter.h \72 lemon/connectivity.h \ 30 73 lemon/core.h \ 31 lemon/dfs.h \ 32 lemon/dijkstra.h \ 33 lemon/dim2.h \ 74 lemon/cost_scaling.h \ 75 lemon/counter.h \ 76 lemon/cplex.h \ 77 lemon/cycle_canceling.h \ 78 lemon/dfs.h \ 79 lemon/dheap.h \ 80 lemon/dijkstra.h \ 81 lemon/dim2.h \ 82 lemon/dimacs.h \ 83 lemon/edge_set.h \ 84 lemon/elevator.h \ 34 85 lemon/error.h \ 35 lemon/graph_to_eps.h \ 86 lemon/euler.h \ 87 lemon/fib_heap.h \ 88 lemon/fractional_matching.h \ 89 lemon/full_graph.h \ 90 lemon/glpk.h \ 91 lemon/gomory_hu.h \ 92 lemon/graph_to_eps.h \ 93 lemon/grid_graph.h \ 94 lemon/grosso_locatelli_pullan_mc.h \ 95 lemon/hartmann_orlin_mmc.h \ 96 lemon/howard_mmc.h \ 97 lemon/hypercube_graph.h \ 98 lemon/karp_mmc.h \ 36 99 lemon/kruskal.h \ 100 lemon/hao_orlin.h \ 37 101 lemon/lgf_reader.h \ 38 102 lemon/lgf_writer.h \ 39 103 lemon/list_graph.h \ 104 lemon/lp.h \ 105 lemon/lp_base.h \ 106 lemon/lp_skeleton.h \ 40 107 lemon/maps.h \ 108 lemon/matching.h \ 41 109 lemon/math.h \ 110 lemon/min_cost_arborescence.h \ 111 lemon/max_cardinality_search.h \ 112 lemon/nagamochi_ibaraki.h \ 113 lemon/nauty_reader.h \ 114 lemon/network_simplex.h \ 115 lemon/pairing_heap.h \ 42 116 lemon/path.h \ 43 lemon/random.h \ 117 lemon/planarity.h \ 118 lemon/preflow.h \ 119 lemon/quad_heap.h \ 120 lemon/radix_heap.h \ 121 lemon/radix_sort.h \ 122 lemon/random.h \ 44 123 lemon/smart_graph.h \ 45 lemon/time_measure.h \ 46 lemon/tolerance.h \ 124 lemon/soplex.h \ 125 lemon/static_graph.h \ 126 lemon/suurballe.h \ 127 lemon/time_measure.h \ 128 lemon/tolerance.h \ 47 129 lemon/unionfind.h \ 48 130 lemon/bits/windows.h … … 51 133 lemon/bits/alteration_notifier.h \ 52 134 lemon/bits/array_map.h \ 53 lemon/bits/base_extender.h \ 54 lemon/bits/bezier.h \ 135 lemon/bits/bezier.h \ 55 136 lemon/bits/default_map.h \ 56 lemon/bits/enable_if.h \ 137 lemon/bits/edge_set_extender.h \ 138 lemon/bits/enable_if.h \ 139 lemon/bits/graph_adaptor_extender.h \ 57 140 lemon/bits/graph_extender.h \ 58 141 lemon/bits/map_extender.h \ 59 142 lemon/bits/path_dump.h \ 143 lemon/bits/solver_bits.h \ 60 144 lemon/bits/traits.h \ 145 lemon/bits/variant.h \ 61 146 lemon/bits/vector_map.h 62 147 -
lemon/Makefile.am
r917 r956 1 1 EXTRA_DIST += \ 2 2 lemon/lemon.pc.in \ 3 lemon/lemon.pc.cmake \ 3 4 lemon/CMakeLists.txt \ 4 5 lemon/config.h.cmake
Note: See TracChangeset
for help on using the changeset viewer.