COIN-OR::LEMON - Graph Library

source: lemon-0.x/lemon/Makefile.am @ 2031:080d51024ac5

Last change on this file since 2031:080d51024ac5 was 2031:080d51024ac5, checked in by Balazs Dezso, 18 years ago

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.

File size: 1.8 KB
Line 
1AM_CPPFLAGS = -I$(top_srcdir)
2
3pkgconfigdir = $(libdir)/pkgconfig
4pkgconfig_DATA = lemon.pc
5
6lib_LTLIBRARIES = libemon.la
7
8libemon_la_SOURCES = \
9        lp_base.cc \
10        lp_skeleton.cc \
11        base.cc \
12        eps.cc
13libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
14libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS)
15
16if HAVE_GLPK
17libemon_la_SOURCES += lp_glpk.cc
18endif
19
20if HAVE_CPLEX
21libemon_la_SOURCES += lp_cplex.cc
22endif
23
24nobase_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
Note: See TracBrowser for help on using the repository browser.