COIN-OR::LEMON - Graph Library

Changeset 1091:4dd3dc8eb5a7 in lemon


Ignore:
Timestamp:
10/24/11 21:42:22 (12 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
default
Parents:
1088:7f6eeffe3cd1 (diff), 1087:b96574ff36ec (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Phase:
public
Message:

Merge #428 and #429

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • lemon/Makefile.am

    r1086 r1091  
    22        lemon/lemon.pc.in \
    33        lemon/lemon.pc.cmake \
    4         lemon/CMakeLists.txt
     4        lemon/CMakeLists.txt \
     5        lemon/config.h.cmake
    56
    67pkgconfig_DATA += lemon/lemon.pc
     
    910
    1011lemon_libemon_la_SOURCES = \
    11         lemon/arg_parser.cc \
    12         lemon/base.cc \
    13         lemon/color.cc \
    14         lemon/random.cc \
     12        lemon/arg_parser.cc \
     13        lemon/base.cc \
     14        lemon/color.cc \
     15        lemon/lp_base.cc \
     16        lemon/lp_skeleton.cc \
     17        lemon/random.cc \
    1518        lemon/bits/windows.cc
    1619
    17 #lemon_libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) $(SOPLEX_CXXFLAGS)
    18 #lemon_libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS) $(SOPLEX_LIBS)
     20nodist_lemon_HEADERS = lemon/config.h   
    1921
    20 nodist_lemon_HEADERS = lemon/config.h
     22lemon_libemon_la_CXXFLAGS = \
     23        $(AM_CXXFLAGS) \
     24        $(GLPK_CFLAGS) \
     25        $(CPLEX_CFLAGS) \
     26        $(SOPLEX_CXXFLAGS) \
     27        $(CLP_CXXFLAGS) \
     28        $(CBC_CXXFLAGS)
     29
     30lemon_libemon_la_LDFLAGS = \
     31        $(GLPK_LIBS) \
     32        $(CPLEX_LIBS) \
     33        $(SOPLEX_LIBS) \
     34        $(CLP_LIBS) \
     35        $(CBC_LIBS)
     36
     37if HAVE_GLPK
     38lemon_libemon_la_SOURCES += lemon/glpk.cc
     39endif
     40
     41if HAVE_CPLEX
     42lemon_libemon_la_SOURCES += lemon/cplex.cc
     43endif
     44
     45if HAVE_SOPLEX
     46lemon_libemon_la_SOURCES += lemon/soplex.cc
     47endif
     48
     49if HAVE_CLP
     50lemon_libemon_la_SOURCES += lemon/clp.cc
     51endif
     52
     53if HAVE_CBC
     54lemon_libemon_la_SOURCES += lemon/cbc.cc
     55endif
    2156
    2257lemon_HEADERS += \
    23         lemon/arg_parser.h \
     58        lemon/adaptors.h \
     59        lemon/arg_parser.h \
    2460        lemon/assert.h \
    25         lemon/bfs.h \
    26         lemon/bin_heap.h \
    27         lemon/color.h \
     61        lemon/bellman_ford.h \
     62        lemon/bfs.h \
     63        lemon/bin_heap.h \
     64        lemon/binomial_heap.h \
     65        lemon/bucket_heap.h \
     66        lemon/capacity_scaling.h \
     67        lemon/cbc.h \
     68        lemon/circulation.h \
     69        lemon/clp.h \
     70        lemon/color.h \
    2871        lemon/concept_check.h \
    29         lemon/counter.h \
     72        lemon/connectivity.h \
    3073        lemon/core.h \
    31         lemon/dfs.h \
    32         lemon/dijkstra.h \
    33         lemon/dim2.h \
     74        lemon/cost_scaling.h \
     75        lemon/counter.h \
     76        lemon/cplex.h \
     77        lemon/cycle_canceling.h \
     78        lemon/dfs.h \
     79        lemon/dheap.h \
     80        lemon/dijkstra.h \
     81        lemon/dim2.h \
     82        lemon/dimacs.h \
     83        lemon/edge_set.h \
     84        lemon/elevator.h \
    3485        lemon/error.h \
    35         lemon/graph_to_eps.h \
     86        lemon/euler.h \
     87        lemon/fib_heap.h \
     88        lemon/fractional_matching.h \
     89        lemon/full_graph.h \
     90        lemon/glpk.h \
     91        lemon/gomory_hu.h \
     92        lemon/graph_to_eps.h \
     93        lemon/grid_graph.h \
     94        lemon/grosso_locatelli_pullan_mc.h \
     95        lemon/hartmann_orlin_mmc.h \
     96        lemon/howard_mmc.h \
     97        lemon/hypercube_graph.h \
     98        lemon/karp_mmc.h \
    3699        lemon/kruskal.h \
     100        lemon/hao_orlin.h \
    37101        lemon/lgf_reader.h \
    38102        lemon/lgf_writer.h \
    39103        lemon/list_graph.h \
     104        lemon/lp.h \
     105        lemon/lp_base.h \
     106        lemon/lp_skeleton.h \
    40107        lemon/maps.h \
     108        lemon/matching.h \
    41109        lemon/math.h \
     110        lemon/min_cost_arborescence.h \
     111        lemon/max_cardinality_search.h \
     112        lemon/nagamochi_ibaraki.h \
     113        lemon/nauty_reader.h \
     114        lemon/network_simplex.h \
     115        lemon/pairing_heap.h \
    42116        lemon/path.h \
    43         lemon/random.h \
     117        lemon/planarity.h \
     118        lemon/preflow.h \
     119        lemon/quad_heap.h \
     120        lemon/radix_heap.h \
     121        lemon/radix_sort.h \
     122        lemon/random.h \
    44123        lemon/smart_graph.h \
    45         lemon/time_measure.h \
    46         lemon/tolerance.h \
     124        lemon/soplex.h \
     125        lemon/static_graph.h \
     126        lemon/suurballe.h \
     127        lemon/time_measure.h \
     128        lemon/tolerance.h \
    47129        lemon/unionfind.h \
    48130        lemon/bits/windows.h
     
    51133        lemon/bits/alteration_notifier.h \
    52134        lemon/bits/array_map.h \
    53         lemon/bits/base_extender.h \
    54         lemon/bits/bezier.h \
     135        lemon/bits/bezier.h \
    55136        lemon/bits/default_map.h \
    56         lemon/bits/enable_if.h \
     137        lemon/bits/edge_set_extender.h \
     138        lemon/bits/enable_if.h \
     139        lemon/bits/graph_adaptor_extender.h \
    57140        lemon/bits/graph_extender.h \
    58141        lemon/bits/map_extender.h \
    59142        lemon/bits/path_dump.h \
     143        lemon/bits/solver_bits.h \
    60144        lemon/bits/traits.h \
     145        lemon/bits/variant.h \
    61146        lemon/bits/vector_map.h
    62147
  • lemon/Makefile.am

    r1021 r1091  
    11EXTRA_DIST += \
    22        lemon/lemon.pc.in \
     3        lemon/lemon.pc.cmake \
    34        lemon/CMakeLists.txt \
    45        lemon/config.h.cmake
Note: See TracChangeset for help on using the changeset viewer.