cmake/LEMONConfig.cmake.in
author Peter Kovacs <kpeter@inf.elte.hu>
Sat, 20 Feb 2010 18:39:03 +0100
changeset 839 f3bc4e9b5f3a
permissions -rw-r--r--
New heuristics for MCF algorithms (#340)
and some implementation improvements.

- A useful heuristic is added to NetworkSimplex to make the
initial pivots faster.
- A powerful global update heuristic is added to CostScaling
and the implementation is reworked with various improvements.
- Better relabeling in CostScaling to improve numerical stability
and make the code faster.
- A small improvement is made in CapacityScaling for better
delta computation.
- Add notes to the classes about the usage of vector<char> instead
of vector<bool> for efficiency reasons.
ladanyi@675
     1
SET(LEMON_INCLUDE_DIR "@CMAKE_INSTALL_PREFIX@/include" CACHE PATH "LEMON include directory")
ladanyi@675
     2
SET(LEMON_INCLUDE_DIRS "${LEMON_INCLUDE_DIR}")
ladanyi@675
     3
ladanyi@675
     4
IF(UNIX)
ladanyi@675
     5
  SET(LEMON_LIB_NAME "libemon.a")
ladanyi@675
     6
ELSEIF(WIN32)
ladanyi@675
     7
  SET(LEMON_LIB_NAME "lemon.lib")
ladanyi@675
     8
ENDIF(UNIX)
ladanyi@675
     9
ladanyi@675
    10
SET(LEMON_LIBRARY "@CMAKE_INSTALL_PREFIX@/lib/${LEMON_LIB_NAME}" CACHE FILEPATH "LEMON library")
ladanyi@675
    11
SET(LEMON_LIBRARIES "${LEMON_LIBRARY}")
ladanyi@675
    12
ladanyi@675
    13
MARK_AS_ADVANCED(LEMON_LIBRARY LEMON_INCLUDE_DIR)