cmake/LEMONConfig.cmake.in
author Peter Kovacs <kpeter@inf.elte.hu>
Thu, 06 Aug 2009 20:12:43 +0200
changeset 760 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@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)