equal
deleted
inserted
replaced
26 $(CPLEX_LIBS) \ |
26 $(CPLEX_LIBS) \ |
27 $(SOPLEX_LIBS) \ |
27 $(SOPLEX_LIBS) \ |
28 $(CLP_LIBS) |
28 $(CLP_LIBS) |
29 |
29 |
30 if HAVE_GLPK |
30 if HAVE_GLPK |
31 lemon_libemon_la_SOURCES += lemon/lp_glpk.cc |
31 lemon_libemon_la_SOURCES += lemon/glpk.cc |
32 endif |
32 endif |
33 |
33 |
34 if HAVE_CPLEX |
34 if HAVE_CPLEX |
35 lemon_libemon_la_SOURCES += lemon/lp_cplex.cc |
35 lemon_libemon_la_SOURCES += lemon/cplex.cc |
36 endif |
36 endif |
37 |
37 |
38 if HAVE_SOPLEX |
38 if HAVE_SOPLEX |
39 lemon_libemon_la_SOURCES += lemon/lp_soplex.cc |
39 lemon_libemon_la_SOURCES += lemon/soplex.cc |
40 endif |
40 endif |
41 |
41 |
42 if HAVE_CLP |
42 if HAVE_CLP |
43 lemon_libemon_la_SOURCES += lemon/lp_clp.cc |
43 lemon_libemon_la_SOURCES += lemon/clp.cc |
44 endif |
44 endif |
45 |
45 |
46 lemon_HEADERS += \ |
46 lemon_HEADERS += \ |
47 lemon/adaptors.h \ |
47 lemon/adaptors.h \ |
48 lemon/arg_parser.h \ |
48 lemon/arg_parser.h \ |
49 lemon/assert.h \ |
49 lemon/assert.h \ |
50 lemon/bfs.h \ |
50 lemon/bfs.h \ |
51 lemon/bin_heap.h \ |
51 lemon/bin_heap.h \ |
52 lemon/circulation.h \ |
52 lemon/circulation.h \ |
|
53 lemon/clp.h \ |
53 lemon/color.h \ |
54 lemon/color.h \ |
54 lemon/concept_check.h \ |
55 lemon/concept_check.h \ |
55 lemon/counter.h \ |
56 lemon/counter.h \ |
56 lemon/core.h \ |
57 lemon/core.h \ |
|
58 lemon/cplex.h \ |
57 lemon/dfs.h \ |
59 lemon/dfs.h \ |
58 lemon/dijkstra.h \ |
60 lemon/dijkstra.h \ |
59 lemon/dim2.h \ |
61 lemon/dim2.h \ |
60 lemon/dimacs.h \ |
62 lemon/dimacs.h \ |
61 lemon/elevator.h \ |
63 lemon/elevator.h \ |
62 lemon/error.h \ |
64 lemon/error.h \ |
63 lemon/full_graph.h \ |
65 lemon/full_graph.h \ |
|
66 lemon/glpk.h \ |
64 lemon/graph_to_eps.h \ |
67 lemon/graph_to_eps.h \ |
65 lemon/grid_graph.h \ |
68 lemon/grid_graph.h \ |
66 lemon/hypercube_graph.h \ |
69 lemon/hypercube_graph.h \ |
67 lemon/kruskal.h \ |
70 lemon/kruskal.h \ |
68 lemon/hao_orlin.h \ |
71 lemon/hao_orlin.h \ |
69 lemon/lgf_reader.h \ |
72 lemon/lgf_reader.h \ |
70 lemon/lgf_writer.h \ |
73 lemon/lgf_writer.h \ |
71 lemon/list_graph.h \ |
74 lemon/list_graph.h \ |
72 lemon/lp.h \ |
75 lemon/lp.h \ |
73 lemon/lp_base.h \ |
76 lemon/lp_base.h \ |
74 lemon/lp_clp.h \ |
|
75 lemon/lp_cplex.h \ |
|
76 lemon/lp_glpk.h \ |
|
77 lemon/lp_skeleton.h \ |
77 lemon/lp_skeleton.h \ |
78 lemon/lp_soplex.h \ |
|
79 lemon/list_graph.h \ |
78 lemon/list_graph.h \ |
80 lemon/maps.h \ |
79 lemon/maps.h \ |
81 lemon/math.h \ |
80 lemon/math.h \ |
82 lemon/max_matching.h \ |
81 lemon/max_matching.h \ |
83 lemon/nauty_reader.h \ |
82 lemon/nauty_reader.h \ |
84 lemon/path.h \ |
83 lemon/path.h \ |
85 lemon/preflow.h \ |
84 lemon/preflow.h \ |
86 lemon/radix_sort.h \ |
85 lemon/radix_sort.h \ |
87 lemon/random.h \ |
86 lemon/random.h \ |
88 lemon/smart_graph.h \ |
87 lemon/smart_graph.h \ |
|
88 lemon/soplex.h \ |
89 lemon/suurballe.h \ |
89 lemon/suurballe.h \ |
90 lemon/time_measure.h \ |
90 lemon/time_measure.h \ |
91 lemon/tolerance.h \ |
91 lemon/tolerance.h \ |
92 lemon/unionfind.h |
92 lemon/unionfind.h |
93 |
93 |