COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/Makefile.am

    r1106 r547  
    11EXTRA_DIST += \
    22        lemon/lemon.pc.in \
    3         lemon/lemon.pc.cmake \
    4         lemon/CMakeLists.txt \
    5         lemon/config.h.cmake
     3        lemon/CMakeLists.txt
    64
    75pkgconfig_DATA += lemon/lemon.pc
     
    1513        lemon/lp_base.cc \
    1614        lemon/lp_skeleton.cc \
    17         lemon/random.cc \
    18         lemon/bits/windows.cc
     15        lemon/random.cc
    1916
    20 nodist_lemon_HEADERS = lemon/config.h   
    2117
    2218lemon_libemon_la_CXXFLAGS = \
    23         $(AM_CXXFLAGS) \
    2419        $(GLPK_CFLAGS) \
    2520        $(CPLEX_CFLAGS) \
    2621        $(SOPLEX_CXXFLAGS) \
    27         $(CLP_CXXFLAGS) \
    28         $(CBC_CXXFLAGS)
     22        $(CLP_CXXFLAGS)
    2923
    3024lemon_libemon_la_LDFLAGS = \
     
    3226        $(CPLEX_LIBS) \
    3327        $(SOPLEX_LIBS) \
    34         $(CLP_LIBS) \
    35         $(CBC_LIBS)
     28        $(CLP_LIBS)
    3629
    3730if HAVE_GLPK
    38 lemon_libemon_la_SOURCES += lemon/glpk.cc
     31lemon_libemon_la_SOURCES += lemon/lp_glpk.cc
    3932endif
    4033
    4134if HAVE_CPLEX
    42 lemon_libemon_la_SOURCES += lemon/cplex.cc
     35lemon_libemon_la_SOURCES += lemon/lp_cplex.cc
    4336endif
    4437
    4538if HAVE_SOPLEX
    46 lemon_libemon_la_SOURCES += lemon/soplex.cc
     39lemon_libemon_la_SOURCES += lemon/lp_soplex.cc
    4740endif
    4841
    4942if HAVE_CLP
    50 lemon_libemon_la_SOURCES += lemon/clp.cc
    51 endif
    52 
    53 if HAVE_CBC
    54 lemon_libemon_la_SOURCES += lemon/cbc.cc
     43lemon_libemon_la_SOURCES += lemon/lp_clp.cc
    5544endif
    5645
     
    6150        lemon/bfs.h \
    6251        lemon/bin_heap.h \
    63         lemon/bucket_heap.h \
    64         lemon/cbc.h \
    6552        lemon/circulation.h \
    66         lemon/clp.h \
    6753        lemon/color.h \
    6854        lemon/concept_check.h \
    69         lemon/connectivity.h \
    7055        lemon/counter.h \
    7156        lemon/core.h \
    72         lemon/cplex.h \
    7357        lemon/dfs.h \
    7458        lemon/dijkstra.h \
    7559        lemon/dim2.h \
    7660        lemon/dimacs.h \
    77         lemon/edge_set.h \
    7861        lemon/elevator.h \
    7962        lemon/error.h \
    80         lemon/euler.h \
    81         lemon/fib_heap.h \
    8263        lemon/full_graph.h \
    83         lemon/glpk.h \
    84         lemon/gomory_hu.h \
    8564        lemon/graph_to_eps.h \
    8665        lemon/grid_graph.h \
     
    9372        lemon/lp.h \
    9473        lemon/lp_base.h \
     74        lemon/lp_clp.h \
     75        lemon/lp_cplex.h \
     76        lemon/lp_glpk.h \
    9577        lemon/lp_skeleton.h \
     78        lemon/lp_soplex.h \
    9679        lemon/maps.h \
    97         lemon/matching.h \
    9880        lemon/math.h \
    99         lemon/min_cost_arborescence.h \
     81        lemon/max_matching.h \
    10082        lemon/nauty_reader.h \
    101         lemon/network_simplex.h \
    10283        lemon/path.h \
    10384        lemon/preflow.h \
    104         lemon/radix_heap.h \
    10585        lemon/radix_sort.h \
    10686        lemon/random.h \
    10787        lemon/smart_graph.h \
    108         lemon/soplex.h \
    10988        lemon/suurballe.h \
    11089        lemon/time_measure.h \
    11190        lemon/tolerance.h \
    112         lemon/unionfind.h \
    113         lemon/bits/windows.h
     91        lemon/unionfind.h
    11492
    11593bits_HEADERS += \
    11694        lemon/bits/alteration_notifier.h \
    11795        lemon/bits/array_map.h \
     96        lemon/bits/base_extender.h \
    11897        lemon/bits/bezier.h \
    11998        lemon/bits/default_map.h \
    120         lemon/bits/edge_set_extender.h \
    12199        lemon/bits/enable_if.h \
    122100        lemon/bits/graph_adaptor_extender.h \
Note: See TracChangeset for help on using the changeset viewer.