tools/CMakeLists.txt
author Peter Kovacs <kpeter@inf.elte.hu>
Tue, 24 Mar 2009 00:18:25 +0100
changeset 604 8c3112a66878
child 549 ba659d676331
permissions -rw-r--r--
Use XTI implementation instead of ATI in NetworkSimplex (#234)

XTI (eXtended Threaded Index) is an imporved version of the widely
known ATI (Augmented Threaded Index) method for storing and updating
the spanning tree structure in Network Simplex algorithms.

In the ATI data structure three indices are stored for each node:
predecessor, thread and depth. In the XTI data structure depth is
replaced by the number of successors and the last successor
(according to the thread index).
alpar@527
     1
INCLUDE_DIRECTORIES(
alpar@527
     2
  ${CMAKE_SOURCE_DIR}
alpar@527
     3
  ${CMAKE_BINARY_DIR}
alpar@527
     4
)
alpar@527
     5
alpar@527
     6
LINK_DIRECTORIES(${CMAKE_BINARY_DIR}/lemon)
alpar@527
     7
alpar@527
     8
ADD_EXECUTABLE(lgf-gen lgf-gen.cc)
alpar@527
     9
TARGET_LINK_LIBRARIES(lgf-gen lemon)
alpar@527
    10
alpar@527
    11
ADD_EXECUTABLE(dimacs-to-lgf dimacs-to-lgf.cc)
alpar@527
    12
TARGET_LINK_LIBRARIES(dimacs-to-lgf lemon)
alpar@527
    13
alpar@527
    14
ADD_EXECUTABLE(dimacs-solver dimacs-solver.cc)
alpar@527
    15
TARGET_LINK_LIBRARIES(dimacs-solver lemon)
alpar@527
    16
alpar@527
    17
INSTALL(
alpar@527
    18
  TARGETS lgf-gen dimacs-to-lgf dimacs-solver
alpar@527
    19
  RUNTIME DESTINATION bin
alpar@527
    20
  COMPONENT bin
alpar@527
    21
)
alpar@527
    22
alpar@527
    23
IF(NOT WIN32)
alpar@527
    24
  INSTALL(
alpar@527
    25
    FILES ${CMAKE_CURRENT_SOURCE_DIR}/lemon-0.x-to-1.x.sh
alpar@527
    26
    RUNTIME DESTINATION bin
alpar@527
    27
    COMPONENT bin)
alpar@527
    28
ENDIF(NOT WIN32)