lemon/Makefile.am
author Balazs Dezso <deba@inf.elte.hu>
Tue, 02 Dec 2008 22:48:28 +0100
changeset 459 ed54c0d13df0
parent 458 7afc121e0689
child 461 08d495d48089
child 687 17cabb114d52
permissions -rw-r--r--
Thorough redesign of the LP/MIP interface (#44)

- Redesigned class structure
- Redesigned iterators
- Some functions in the basic interface redesigned
- More complete setting functions
- Ray retrieving functions
- Lot of improvements
- Cplex common env
- CLP macro definition to config.h.in
- Update lp.h to also use soplex and clp
- Remove default_solver_name
- New solverName() function in solvers
- Handle exceptions for MipCplex test
- Rename tolerance parameter to epsilon
- Rename MapIt to CoeffIt
- Lot of documentation improvements
- Various bugfixes
ladanyi@1
     1
EXTRA_DIST += \
ladanyi@146
     2
	lemon/lemon.pc.in \
ladanyi@146
     3
	lemon/CMakeLists.txt
ladanyi@1
     4
ladanyi@1
     5
pkgconfig_DATA += lemon/lemon.pc
ladanyi@1
     6
ladanyi@1
     7
lib_LTLIBRARIES += lemon/libemon.la
ladanyi@1
     8
alpar@7
     9
lemon_libemon_la_SOURCES = \
alpar@440
    10
	lemon/arg_parser.cc \
alpar@440
    11
	lemon/base.cc \
alpar@440
    12
	lemon/color.cc \
deba@458
    13
	lemon/lp_base.cc \
deba@458
    14
	lemon/lp_skeleton.cc \
alpar@440
    15
	lemon/random.cc
alpar@10
    16
deba@458
    17
deba@458
    18
lemon_libemon_la_CXXFLAGS = \
deba@458
    19
	$(GLPK_CFLAGS) \
deba@458
    20
	$(CPLEX_CFLAGS) \
deba@459
    21
	$(SOPLEX_CXXFLAGS) \
deba@459
    22
	$(CLP_CXXFLAGS)
deba@458
    23
deba@458
    24
lemon_libemon_la_LDFLAGS = \
deba@458
    25
	$(GLPK_LIBS) \
deba@458
    26
	$(CPLEX_LIBS) \
deba@459
    27
	$(SOPLEX_LIBS) \
deba@459
    28
	$(CLP_LIBS)
deba@458
    29
deba@458
    30
if HAVE_GLPK
deba@459
    31
lemon_libemon_la_SOURCES += lemon/lp_glpk.cc
deba@458
    32
endif
deba@458
    33
deba@458
    34
if HAVE_CPLEX
deba@459
    35
lemon_libemon_la_SOURCES += lemon/lp_cplex.cc
deba@458
    36
endif
deba@458
    37
deba@458
    38
if HAVE_SOPLEX
deba@458
    39
lemon_libemon_la_SOURCES += lemon/lp_soplex.cc
deba@458
    40
endif
ladanyi@1
    41
deba@459
    42
if HAVE_CLP
deba@459
    43
lemon_libemon_la_SOURCES += lemon/lp_clp.cc
deba@459
    44
endif
deba@459
    45
alpar@2
    46
lemon_HEADERS += \
deba@416
    47
	lemon/adaptors.h \
alpar@440
    48
	lemon/arg_parser.h \
deba@108
    49
	lemon/assert.h \
alpar@440
    50
	lemon/bfs.h \
alpar@440
    51
	lemon/bin_heap.h \
alpar@440
    52
	lemon/circulation.h \
alpar@440
    53
	lemon/color.h \
alpar@166
    54
	lemon/concept_check.h \
alpar@440
    55
	lemon/counter.h \
deba@220
    56
	lemon/core.h \
alpar@440
    57
	lemon/dfs.h \
alpar@440
    58
	lemon/dijkstra.h \
alpar@440
    59
	lemon/dim2.h \
alpar@440
    60
	lemon/dimacs.h \
alpar@379
    61
	lemon/elevator.h \
kpeter@66
    62
	lemon/error.h \
deba@353
    63
	lemon/full_graph.h \
alpar@440
    64
	lemon/graph_to_eps.h \
alpar@440
    65
	lemon/grid_graph.h \
kpeter@364
    66
	lemon/hypercube_graph.h \
alpar@103
    67
	lemon/kruskal.h \
deba@409
    68
	lemon/hao_orlin.h \
deba@127
    69
	lemon/lgf_reader.h \
kpeter@195
    70
	lemon/lgf_writer.h \
kpeter@66
    71
	lemon/list_graph.h \
deba@458
    72
	lemon/lp.h \
deba@458
    73
	lemon/lp_base.h \
deba@459
    74
	lemon/lp_clp.h \
deba@458
    75
	lemon/lp_cplex.h \
deba@458
    76
	lemon/lp_glpk.h \
deba@458
    77
	lemon/lp_skeleton.h \
deba@458
    78
	lemon/lp_soplex.h \
deba@459
    79
	lemon/list_graph.h \
alpar@58
    80
	lemon/maps.h \
alpar@68
    81
	lemon/math.h \
deba@326
    82
	lemon/max_matching.h \
deba@348
    83
	lemon/nauty_reader.h \
alpar@96
    84
	lemon/path.h \
alpar@389
    85
	lemon/preflow.h \
deba@441
    86
	lemon/radix_sort.h \
alpar@440
    87
	lemon/random.h \
deba@109
    88
	lemon/smart_graph.h \
alpar@345
    89
	lemon/suurballe.h \
alpar@440
    90
	lemon/time_measure.h \
alpar@440
    91
	lemon/tolerance.h \
alpar@103
    92
	lemon/unionfind.h
ladanyi@1
    93
alpar@7
    94
bits_HEADERS += \
deba@57
    95
	lemon/bits/alteration_notifier.h \
deba@57
    96
	lemon/bits/array_map.h \
deba@57
    97
	lemon/bits/base_extender.h \
alpar@440
    98
	lemon/bits/bezier.h \
deba@57
    99
	lemon/bits/default_map.h \
alpar@440
   100
	lemon/bits/enable_if.h \
deba@414
   101
	lemon/bits/graph_adaptor_extender.h \
alpar@58
   102
	lemon/bits/graph_extender.h \
deba@57
   103
	lemon/bits/map_extender.h \
alpar@100
   104
	lemon/bits/path_dump.h \
deba@459
   105
	lemon/bits/solver_bits.h \
alpar@58
   106
	lemon/bits/traits.h \
deba@414
   107
	lemon/bits/variant.h \
deba@57
   108
	lemon/bits/vector_map.h
ladanyi@1
   109
alpar@58
   110
concept_HEADERS += \
deba@57
   111
	lemon/concepts/digraph.h \
deba@57
   112
	lemon/concepts/graph.h \
kpeter@195
   113
	lemon/concepts/graph_components.h \
alpar@100
   114
	lemon/concepts/heap.h \
alpar@58
   115
	lemon/concepts/maps.h \
kpeter@195
   116
	lemon/concepts/path.h