cmake/LEMONConfig.cmake.in
author Peter Kovacs <kpeter@inf.elte.hu>
Thu, 12 Nov 2009 23:26:13 +0100
changeset 872 fa6f37d7a25b
permissions -rw-r--r--
Entirely rework CapacityScaling (#180)

- Use the new interface similarly to NetworkSimplex.
- Rework the implementation using an efficient internal structure
for handling the residual network. This improvement made the
code much faster (up to 2-5 times faster on large graphs).
- Handle GEQ supply type (LEQ is not supported).
- Handle negative costs for arcs of finite capacity.
(Note that this algorithm cannot handle arcs of negative cost
and infinite upper bound, thus it returns UNBOUNDED if such
an arc exists.)
- Extend the documentation.
ladanyi@722
     1
SET(LEMON_INCLUDE_DIR "@CMAKE_INSTALL_PREFIX@/include" CACHE PATH "LEMON include directory")
ladanyi@722
     2
SET(LEMON_INCLUDE_DIRS "${LEMON_INCLUDE_DIR}")
ladanyi@722
     3
ladanyi@722
     4
IF(UNIX)
ladanyi@722
     5
  SET(LEMON_LIB_NAME "libemon.a")
ladanyi@722
     6
ELSEIF(WIN32)
ladanyi@722
     7
  SET(LEMON_LIB_NAME "lemon.lib")
ladanyi@722
     8
ENDIF(UNIX)
ladanyi@722
     9
ladanyi@722
    10
SET(LEMON_LIBRARY "@CMAKE_INSTALL_PREFIX@/lib/${LEMON_LIB_NAME}" CACHE FILEPATH "LEMON library")
ladanyi@722
    11
SET(LEMON_LIBRARIES "${LEMON_LIBRARY}")
ladanyi@722
    12
ladanyi@722
    13
MARK_AS_ADVANCED(LEMON_LIBRARY LEMON_INCLUDE_DIR)