COIN-OR::LEMON - Graph Library

Changes in / [905:de428ebb47ab:903:3ffd46dc8e01] in lemon-main


Ignore:
Files:
2 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • doc/groups.dox

    r904 r879  
    552552
    553553/**
    554 @defgroup approx_algs Approximation Algorithms
     554@defgroup approx Approximation Algorithms
    555555@ingroup algs
    556556\brief Approximation algorithms.
     
    558558This group contains the approximation and heuristic algorithms
    559559implemented in LEMON.
    560 
    561 <b>Maximum Clique Problem</b>
    562   - \ref GrossoLocatelliPullanMc An efficient heuristic algorithm of
    563     Grosso, Locatelli, and Pullan.
    564560*/
    565561
  • doc/references.bib

    r904 r755  
    298298  address =      {Dublin, Ireland},
    299299  year =         1991,
    300   month =        sep
    301 }
    302 
    303 %%%%% Other algorithms %%%%%
    304 
    305 @article{grosso08maxclique,
    306   author =       {Andrea Grosso and Marco Locatelli and Wayne Pullan},
    307   title =        {Simple ingredients leading to very efficient
    308                   heuristics for the maximum clique problem},
    309   journal =      {Journal of Heuristics},
    310   year =         2008,
    311   volume =       14,
    312   number =       6,
    313   pages =        {587--612}
    314 }
     300  month =        sep,
     301}
  • lemon/Makefile.am

    r904 r874  
    9191        lemon/graph_to_eps.h \
    9292        lemon/grid_graph.h \
    93         lemon/grosso_locatelli_pullan_mc.h \
    9493        lemon/hartmann_orlin_mmc.h \
    9594        lemon/howard_mmc.h \
  • test/CMakeLists.txt

    r905 r901  
    3232  maps_test
    3333  matching_test
    34   max_clique_test
    3534  min_cost_arborescence_test
    3635  min_cost_flow_test
  • test/Makefile.am

    r904 r874  
    3434        test/maps_test \
    3535        test/matching_test \
    36         test/max_clique_test \
    3736        test/min_cost_arborescence_test \
    3837        test/min_cost_flow_test \
     
    8685test_mip_test_SOURCES = test/mip_test.cc
    8786test_matching_test_SOURCES = test/matching_test.cc
    88 test_max_clique_test_SOURCES = test/max_clique_test.cc
    8987test_min_cost_arborescence_test_SOURCES = test/min_cost_arborescence_test.cc
    9088test_min_cost_flow_test_SOURCES = test/min_cost_flow_test.cc
Note: See TracChangeset for help on using the changeset viewer.