lemon/Makefile.am
author Peter Kovacs <kpeter@inf.elte.hu>
Mon, 22 Sep 2008 15:33:23 +0200
changeset 278 931190050520
parent 220 a5d8c039f218
child 368 879c55700cd4
permissions -rw-r--r--
Improve the function-type interface of bfs, dfs, and dijkstra (ticket #96)
- BfsWizard and DfsWizard have run(s), run(s,t), and run() functions,
DijkstraWizard has run(s) and run(s,t) functions.
- Set NodeMap<T> instead of NullMap as PredMap and DistMap in the default
traits classes for the function-type interface.
- Modify the related test files.
- Doc improvements.
- Bug fix in concepts/path.h.
     1 EXTRA_DIST += \
     2 	lemon/lemon.pc.in \
     3 	lemon/CMakeLists.txt
     4 
     5 pkgconfig_DATA += lemon/lemon.pc
     6 
     7 lib_LTLIBRARIES += lemon/libemon.la
     8 
     9 lemon_libemon_la_SOURCES = \
    10         lemon/arg_parser.cc \
    11         lemon/base.cc \
    12         lemon/color.cc \
    13         lemon/random.cc
    14 
    15 #lemon_libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) $(SOPLEX_CXXFLAGS)
    16 #lemon_libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS) $(SOPLEX_LIBS)
    17 
    18 lemon_HEADERS += \
    19         lemon/arg_parser.h \
    20 	lemon/assert.h \
    21         lemon/bfs.h \
    22         lemon/bin_heap.h \
    23         lemon/color.h \
    24 	lemon/concept_check.h \
    25         lemon/counter.h \
    26 	lemon/core.h \
    27         lemon/dfs.h \
    28         lemon/dijkstra.h \
    29         lemon/dim2.h \
    30 	lemon/error.h \
    31         lemon/graph_to_eps.h \
    32 	lemon/kruskal.h \
    33 	lemon/lgf_reader.h \
    34 	lemon/lgf_writer.h \
    35 	lemon/list_graph.h \
    36 	lemon/maps.h \
    37 	lemon/math.h \
    38 	lemon/path.h \
    39         lemon/random.h \
    40 	lemon/smart_graph.h \
    41         lemon/time_measure.h \
    42         lemon/tolerance.h \
    43 	lemon/unionfind.h
    44 
    45 bits_HEADERS += \
    46 	lemon/bits/alteration_notifier.h \
    47 	lemon/bits/array_map.h \
    48 	lemon/bits/base_extender.h \
    49         lemon/bits/bezier.h \
    50 	lemon/bits/default_map.h \
    51         lemon/bits/enable_if.h \
    52 	lemon/bits/graph_extender.h \
    53 	lemon/bits/map_extender.h \
    54 	lemon/bits/path_dump.h \
    55 	lemon/bits/traits.h \
    56 	lemon/bits/vector_map.h
    57 
    58 concept_HEADERS += \
    59 	lemon/concepts/digraph.h \
    60 	lemon/concepts/graph.h \
    61 	lemon/concepts/graph_components.h \
    62 	lemon/concepts/heap.h \
    63 	lemon/concepts/maps.h \
    64 	lemon/concepts/path.h