COIN-OR::LEMON - Graph Library

source: lemon-0.x/lemon/Makefile.am @ 1847:7cbc12e42482

Last change on this file since 1847:7cbc12e42482 was 1847:7cbc12e42482, checked in by Alpar Juttner, 18 years ago
  • Changed and improved Timer interface
    • several new member functions
    • reset() -> restart() renaming
    • TimeReport?: a Timer that prints a report on destruction.
  • counter.h: a tool to measure the number of streps of algorithms.
  • New documentation module for time measuring and counting.
File size: 1.7 KB
RevLine 
[1435]1AM_CPPFLAGS = -I$(top_srcdir)
[1304]2
3pkgconfigdir = $(libdir)/pkgconfig
4pkgconfig_DATA = lemon.pc
5
6lib_LTLIBRARIES = libemon.la
[1349]7
8libemon_la_SOURCES = \
9        lp_base.cc \
[1835]10        lp_skeleton.cc \
11        base.cc
[1386]12libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
13libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS)
[1304]14
[1349]15if HAVE_GLPK
16libemon_la_SOURCES += lp_glpk.cc
17endif
[596]18
[1381]19if HAVE_CPLEX
20libemon_la_SOURCES += lp_cplex.cc
21endif
22
[1378]23nobase_pkginclude_HEADERS = \
[1700]24        belmann_ford.h \
[1349]25        bezier.h \
26        bfs.h \
27        dfs.h \
28        bin_heap.h \
[1433]29        config.h \
[1847]30        counter.h \
[1349]31        dijkstra.h \
32        dimacs.h \
[1842]33        edge_set.h \
[1349]34        error.h \
35        fib_heap.h \
[1700]36        floyd_warshall.h \
[1349]37        full_graph.h \
[1625]38        grid_graph.h \
[1401]39        graph_adaptor.h \
[1349]40        graph_utils.h \
41        graph_to_eps.h \
[1693]42        hypercube_graph.h \
[1349]43        invalid.h \
[1677]44        iterable_maps.h \
[1700]45        johnson.h \
[1349]46        kruskal.h \
[1724]47        linear_heap.h \
[1349]48        list_graph.h \
[1629]49        lp.h \
[1378]50        lp_base.h \
[1381]51        lp_cplex.h \
[1378]52        lp_glpk.h \
53        lp_skeleton.h \
[1349]54        maps.h \
[1724]55        matrix_maps.h \
[1824]56        map_iterator.h \
[1349]57        max_matching.h \
58        min_cost_flow.h \
59        suurballe.h \
60        preflow.h \
61        path.h \
62        radix_heap.h \
[1833]63        radix_sort.h \
[1349]64        smart_graph.h \
65        time_measure.h \
[1700]66        topology.h \
[1724]67        traits.h \
[1349]68        unionfind.h \
69        xy.h \
70        concept_check.h \
71        utility.h \
[1408]72        lemon_reader.h \
[1409]73        lemon_writer.h \
[1349]74        graph_reader.h \
75        graph_writer.h \
[1835]76        tolerance.h \
[1349]77        bits/alteration_notifier.h \
78        bits/array_map.h \
79        bits/default_map.h \
80        bits/vector_map.h \
81        bits/iterable_graph_extender.h \
82        bits/extendable_graph_extender.h \
83        bits/clearable_graph_extender.h \
84        bits/erasable_graph_extender.h \
[1795]85        bits/graph_extender.h \
[1815]86        bits/map_extender.h \
[1707]87        bits/static_map.h \
[1409]88        bits/item_reader.h \
[1488]89        bits/item_writer.h \
[1349]90        concept/graph.h \
91        concept/graph_component.h \
92        concept/undir_graph.h \
[1724]93        concept/matrix_maps.h \
[1349]94        concept/maps.h \
95        concept/heap.h \
[959]96        concept/path.h
Note: See TracBrowser for help on using the repository browser.