cmake/FindGLPK.cmake
author Peter Kovacs <kpeter@inf.elte.hu>
Sat, 25 Apr 2009 02:12:41 +0200
changeset 623 7c1324b35d89
child 619 ec817dfc2cb7
permissions -rw-r--r--
Modify the interface of Suurballe (#266, #181)

- Move the parameters s and t from the constructor to the run()
function. It makes the interface capable for multiple run(s,t,k)
calls (possible improvement in the future) and it is more similar
to Dijkstra.
- Simliarly init() and findFlow(k) were replaced by init(s) and
findFlow(t,k). The separation of parameters s and t is for the
future plans of supporting multiple targets with one source node.
For more information see #181.
- LEMON_ASSERT for the Length type (check if it is integer).
- Doc improvements.
- Rearrange query functions.
- Extend test file.
ladanyi@473
     1
SET(GLPK_REGKEY "[HKEY_LOCAL_MACHINE\\SOFTWARE\\GnuWin32\\Glpk;InstallPath]")
ladanyi@473
     2
GET_FILENAME_COMPONENT(GLPK_ROOT_PATH ${GLPK_REGKEY} ABSOLUTE)
ladanyi@473
     3
ladanyi@473
     4
FIND_PATH(GLPK_INCLUDE_DIR
ladanyi@473
     5
  glpk.h
ladanyi@473
     6
  PATHS ${GLPK_REGKEY}/include)
ladanyi@473
     7
ladanyi@473
     8
FIND_LIBRARY(GLPK_LIBRARY
ladanyi@473
     9
  NAMES glpk
ladanyi@473
    10
  PATHS ${GLPK_REGKEY}/lib)
ladanyi@473
    11
ladanyi@473
    12
INCLUDE(FindPackageHandleStandardArgs)
ladanyi@473
    13
FIND_PACKAGE_HANDLE_STANDARD_ARGS(GLPK DEFAULT_MSG GLPK_LIBRARY GLPK_INCLUDE_DIR)
ladanyi@473
    14
ladanyi@473
    15
IF(GLPK_FOUND)
ladanyi@473
    16
  SET(GLPK_LIBRARIES ${GLPK_LIBRARY})
ladanyi@473
    17
  SET(GLPK_BIN_DIR ${GLPK_ROOT_PATH}/bin)
ladanyi@473
    18
ENDIF(GLPK_FOUND)
ladanyi@473
    19
ladanyi@473
    20
MARK_AS_ADVANCED(GLPK_LIBRARY GLPK_INCLUDE_DIR GLPK_BIN_DIR)