Changeset 850:841e1fd5e2b3 in lemon
- Timestamp:
- 08/20/09 22:41:40 (15 years ago)
- Branch:
- 1.1
- Parents:
- 849:017b06600347 (diff), 547:17cabb114d52 (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
r547 r850 1 1 EXTRA_DIST += \ 2 2 lemon/lemon.pc.in \ 3 lemon/CMakeLists.txt 3 lemon/CMakeLists.txt \ 4 lemon/config.h.cmake 4 5 5 6 pkgconfig_DATA += lemon/lemon.pc … … 13 14 lemon/lp_base.cc \ 14 15 lemon/lp_skeleton.cc \ 15 lemon/random.cc 16 lemon/random.cc \ 17 lemon/bits/windows.cc 16 18 19 nodist_lemon_HEADERS = lemon/config.h 17 20 18 21 lemon_libemon_la_CXXFLAGS = \ 22 $(AM_CXXFLAGS) \ 19 23 $(GLPK_CFLAGS) \ 20 24 $(CPLEX_CFLAGS) \ 21 25 $(SOPLEX_CXXFLAGS) \ 22 $(CLP_CXXFLAGS) 26 $(CLP_CXXFLAGS) \ 27 $(CBC_CXXFLAGS) 23 28 24 29 lemon_libemon_la_LDFLAGS = \ … … 26 31 $(CPLEX_LIBS) \ 27 32 $(SOPLEX_LIBS) \ 28 $(CLP_LIBS) 33 $(CLP_LIBS) \ 34 $(CBC_LIBS) 29 35 30 36 if HAVE_GLPK 31 lemon_libemon_la_SOURCES += lemon/ lp_glpk.cc37 lemon_libemon_la_SOURCES += lemon/glpk.cc 32 38 endif 33 39 34 40 if HAVE_CPLEX 35 lemon_libemon_la_SOURCES += lemon/ lp_cplex.cc41 lemon_libemon_la_SOURCES += lemon/cplex.cc 36 42 endif 37 43 38 44 if HAVE_SOPLEX 39 lemon_libemon_la_SOURCES += lemon/ lp_soplex.cc45 lemon_libemon_la_SOURCES += lemon/soplex.cc 40 46 endif 41 47 42 48 if HAVE_CLP 43 lemon_libemon_la_SOURCES += lemon/lp_clp.cc 49 lemon_libemon_la_SOURCES += lemon/clp.cc 50 endif 51 52 if HAVE_CBC 53 lemon_libemon_la_SOURCES += lemon/cbc.cc 44 54 endif 45 55 … … 50 60 lemon/bfs.h \ 51 61 lemon/bin_heap.h \ 62 lemon/cbc.h \ 52 63 lemon/circulation.h \ 64 lemon/clp.h \ 53 65 lemon/color.h \ 54 66 lemon/concept_check.h \ 67 lemon/connectivity.h \ 55 68 lemon/counter.h \ 56 69 lemon/core.h \ 70 lemon/cplex.h \ 57 71 lemon/dfs.h \ 58 72 lemon/dijkstra.h \ 59 73 lemon/dim2.h \ 60 74 lemon/dimacs.h \ 75 lemon/edge_set.h \ 61 76 lemon/elevator.h \ 62 77 lemon/error.h \ 78 lemon/euler.h \ 63 79 lemon/full_graph.h \ 80 lemon/glpk.h \ 81 lemon/gomory_hu.h \ 64 82 lemon/graph_to_eps.h \ 65 83 lemon/grid_graph.h \ … … 72 90 lemon/lp.h \ 73 91 lemon/lp_base.h \ 74 lemon/lp_clp.h \75 lemon/lp_cplex.h \76 lemon/lp_glpk.h \77 92 lemon/lp_skeleton.h \ 78 lemon/lp_soplex.h \79 93 lemon/maps.h \ 94 lemon/matching.h \ 80 95 lemon/math.h \ 81 lemon/m ax_matching.h \96 lemon/min_cost_arborescence.h \ 82 97 lemon/nauty_reader.h \ 98 lemon/network_simplex.h \ 83 99 lemon/path.h \ 84 100 lemon/preflow.h \ … … 86 102 lemon/random.h \ 87 103 lemon/smart_graph.h \ 104 lemon/soplex.h \ 88 105 lemon/suurballe.h \ 89 106 lemon/time_measure.h \ 90 107 lemon/tolerance.h \ 91 lemon/unionfind.h 108 lemon/unionfind.h \ 109 lemon/bits/windows.h 92 110 93 111 bits_HEADERS += \ 94 112 lemon/bits/alteration_notifier.h \ 95 113 lemon/bits/array_map.h \ 96 lemon/bits/base_extender.h \97 114 lemon/bits/bezier.h \ 98 115 lemon/bits/default_map.h \ 116 lemon/bits/edge_set_extender.h \ 99 117 lemon/bits/enable_if.h \ 100 118 lemon/bits/graph_adaptor_extender.h \ -
lemon/Makefile.am
r714 r850 91 91 lemon/lp_base.h \ 92 92 lemon/lp_skeleton.h \ 93 lemon/list_graph.h \94 93 lemon/maps.h \ 95 94 lemon/matching.h \
Note: See TracChangeset
for help on using the changeset viewer.