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.
     1 AM_CPPFLAGS = -I$(top_srcdir)
     2 
     3 pkgconfigdir = $(libdir)/pkgconfig
     4 pkgconfig_DATA = lemon.pc
     5 
     6 lib_LTLIBRARIES = libemon.la
     7 
     8 libemon_la_SOURCES = \
     9 	lp_base.cc \
    10 	lp_skeleton.cc \
    11 	base.cc \
    12 	eps.cc 
    13 libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
    14 libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS)
    15 
    16 if HAVE_GLPK
    17 libemon_la_SOURCES += lp_glpk.cc
    18 endif
    19 
    20 if HAVE_CPLEX
    21 libemon_la_SOURCES += lp_cplex.cc
    22 endif
    23 
    24 nobase_pkginclude_HEADERS = \
    25 	bellman_ford.h \
    26 	bezier.h \
    27 	bfs.h \
    28 	dfs.h \
    29 	bin_heap.h \
    30 	bpugraph_adaptor.h \
    31 	color.h \
    32 	config.h \
    33 	counter.h \
    34 	dijkstra.h \
    35 	dimacs.h \
    36 	dag_shortest_path.h \
    37 	edge_set.h \
    38 	error.h \
    39 	eps.h \
    40 	fib_heap.h \
    41 	floyd_warshall.h \
    42 	fredman_tarjan.h \
    43 	full_graph.h \
    44 	grid_ugraph.h \
    45 	graph_adaptor.h \
    46 	graph_utils.h \
    47 	graph_to_eps.h \
    48 	hypercube_graph.h \
    49 	iterable_maps.h \
    50 	johnson.h \
    51 	kruskal.h \
    52 	linear_heap.h \
    53 	list_graph.h \
    54 	lp.h \
    55 	lp_base.h \
    56 	lp_cplex.h \
    57 	lp_glpk.h \
    58 	lp_skeleton.h \
    59 	maps.h \
    60 	matrix_maps.h \
    61 	map_iterator.h \
    62 	max_matching.h \
    63 	min_cost_arborescence.h \
    64 	min_cost_flow.h \
    65 	min_cut.h \
    66 	suurballe.h \
    67 	preflow.h \
    68 	path.h \
    69 	prim.h \
    70 	radix_heap.h \
    71 	radix_sort.h \
    72 	refptr.h \
    73 	simann.h \
    74 	smart_graph.h \
    75 	sub_graph.h \
    76 	time_measure.h \
    77 	topology.h \
    78 	ugraph_adaptor.h \
    79 	unionfind.h \
    80 	xy.h \
    81 	concept_check.h \
    82 	lemon_reader.h \
    83 	lemon_writer.h \
    84 	graph_reader.h \
    85 	graph_writer.h \
    86 	tolerance.h \
    87 	bits/alteration_notifier.h \
    88 	bits/array_map.h \
    89 	bits/base_extender.h \
    90 	bits/default_map.h \
    91 	bits/vector_map.h \
    92 	bits/map_extender.h \
    93 	bits/graph_extender.h \
    94 	bits/graph_adaptor_extender.h \
    95 	bits/edge_set_extender.h \
    96 	bits/invalid.h \
    97 	bits/item_reader.h \
    98 	bits/item_writer.h \
    99 	bits/traits.h \
   100 	bits/utility.h \
   101 	concept/bpugraph.h \
   102 	concept/graph.h \
   103 	concept/graph_component.h \
   104 	concept/ugraph.h \
   105 	concept/matrix_maps.h \
   106 	concept/maps.h \
   107 	concept/heap.h \
   108 	concept/path.h