lemon/Makefile.am
author deba
Mon, 03 Apr 2006 09:45:23 +0000
changeset 2031 080d51024ac5
parent 2017 6064fd33807c
child 2034 b71f8ff62046
permissions -rw-r--r--
Correcting the structure of the graph's and adaptor's map.
The template assign operators and map iterators can be used for adaptors also.

Some bugfix in the adaptors

New class SwapBpUGraphAdaptor which swaps the two nodeset of the graph.
ladanyi@1435
     1
AM_CPPFLAGS = -I$(top_srcdir)
ladanyi@1304
     2
ladanyi@1304
     3
pkgconfigdir = $(libdir)/pkgconfig
ladanyi@1304
     4
pkgconfig_DATA = lemon.pc
ladanyi@1304
     5
ladanyi@1304
     6
lib_LTLIBRARIES = libemon.la
ladanyi@1349
     7
ladanyi@1349
     8
libemon_la_SOURCES = \
ladanyi@1349
     9
	lp_base.cc \
alpar@1835
    10
	lp_skeleton.cc \
alpar@1971
    11
	base.cc \
alpar@1971
    12
	eps.cc 
ladanyi@1386
    13
libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
ladanyi@1386
    14
libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS)
ladanyi@1304
    15
ladanyi@1349
    16
if HAVE_GLPK
ladanyi@1349
    17
libemon_la_SOURCES += lp_glpk.cc
ladanyi@1349
    18
endif
ladanyi@596
    19
alpar@1381
    20
if HAVE_CPLEX
alpar@1381
    21
libemon_la_SOURCES += lp_cplex.cc
alpar@1381
    22
endif
alpar@1381
    23
alpar@1378
    24
nobase_pkginclude_HEADERS = \
deba@1864
    25
	bellman_ford.h \
ladanyi@1349
    26
	bezier.h \
ladanyi@1349
    27
	bfs.h \
ladanyi@1349
    28
	dfs.h \
ladanyi@1349
    29
	bin_heap.h \
deba@2031
    30
	bpugraph_adaptor.h \
alpar@1971
    31
	color.h \
ladanyi@1433
    32
	config.h \
alpar@1847
    33
	counter.h \
ladanyi@1349
    34
	dijkstra.h \
ladanyi@1349
    35
	dimacs.h \
deba@1912
    36
	dag_shortest_path.h \
deba@1842
    37
	edge_set.h \
ladanyi@1349
    38
	error.h \
alpar@1971
    39
	eps.h \
ladanyi@1349
    40
	fib_heap.h \
deba@1700
    41
	floyd_warshall.h \
deba@1912
    42
	fredman_tarjan.h \
ladanyi@1349
    43
	full_graph.h \
deba@1979
    44
	grid_ugraph.h \
alpar@1401
    45
	graph_adaptor.h \
ladanyi@1349
    46
	graph_utils.h \
ladanyi@1349
    47
	graph_to_eps.h \
deba@1693
    48
	hypercube_graph.h \
alpar@1677
    49
	iterable_maps.h \
deba@1700
    50
	johnson.h \
ladanyi@1349
    51
	kruskal.h \
deba@1724
    52
	linear_heap.h \
ladanyi@1349
    53
	list_graph.h \
alpar@1629
    54
	lp.h \
alpar@1378
    55
	lp_base.h \
alpar@1381
    56
	lp_cplex.h \
alpar@1378
    57
	lp_glpk.h \
alpar@1378
    58
	lp_skeleton.h \
ladanyi@1349
    59
	maps.h \
deba@1724
    60
	matrix_maps.h \
deba@1824
    61
	map_iterator.h \
ladanyi@1349
    62
	max_matching.h \
deba@2017
    63
	min_cost_arborescence.h \
ladanyi@1349
    64
	min_cost_flow.h \
deba@1975
    65
	min_cut.h \
ladanyi@1349
    66
	suurballe.h \
ladanyi@1349
    67
	preflow.h \
ladanyi@1349
    68
	path.h \
deba@1912
    69
	prim.h \
ladanyi@1349
    70
	radix_heap.h \
deba@1833
    71
	radix_sort.h \
alpar@1977
    72
	refptr.h \
ladanyi@1923
    73
	simann.h \
ladanyi@1349
    74
	smart_graph.h \
deba@1866
    75
	sub_graph.h \
ladanyi@1349
    76
	time_measure.h \
deba@1700
    77
	topology.h \
deba@1979
    78
	ugraph_adaptor.h \
ladanyi@1349
    79
	unionfind.h \
ladanyi@1349
    80
	xy.h \
ladanyi@1349
    81
	concept_check.h \
deba@1408
    82
	lemon_reader.h \
deba@1409
    83
	lemon_writer.h \
ladanyi@1349
    84
	graph_reader.h \
ladanyi@1349
    85
	graph_writer.h \
alpar@1835
    86
	tolerance.h \
ladanyi@1349
    87
	bits/alteration_notifier.h \
ladanyi@1349
    88
	bits/array_map.h \
deba@1999
    89
	bits/base_extender.h \
ladanyi@1349
    90
	bits/default_map.h \
ladanyi@1349
    91
	bits/vector_map.h \
deba@1979
    92
	bits/map_extender.h \
klao@1795
    93
	bits/graph_extender.h \
deba@1979
    94
	bits/graph_adaptor_extender.h \
deba@1979
    95
	bits/edge_set_extender.h \
deba@1993
    96
	bits/invalid.h \
deba@1409
    97
	bits/item_reader.h \
alpar@1488
    98
	bits/item_writer.h \
deba@1993
    99
	bits/traits.h \
deba@1993
   100
	bits/utility.h \
deba@1910
   101
	concept/bpugraph.h \
ladanyi@1349
   102
	concept/graph.h \
ladanyi@1349
   103
	concept/graph_component.h \
klao@1909
   104
	concept/ugraph.h \
deba@1724
   105
	concept/matrix_maps.h \
ladanyi@1349
   106
	concept/maps.h \
ladanyi@1349
   107
	concept/heap.h \
klao@959
   108
	concept/path.h