cmake/LEMONConfig.cmake.in
author Peter Kovacs <kpeter@inf.elte.hu>
Thu, 06 Aug 2009 20:12:43 +0200
changeset 807 83ce7ce39f21
permissions -rw-r--r--
Rework and fix the implementation of MinMeanCycle (#179)

- Fix the handling of the cycle means.
- Many implementation improvements:
- More efficient data storage for the strongly connected
components.
- Better handling of BFS queues.
- Merge consecutive BFS searches (perform two BFS searches
instead of three).

This version is about two times faster on average and an order of
magnitude faster if there are a lot of strongly connected components.
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)