demo/CMakeLists.txt
author Peter Kovacs <kpeter@inf.elte.hu>
Sat, 25 Apr 2009 02:12:41 +0200
changeset 615 7c1324b35d89
parent 474 f59df77f5c8d
child 622 20dac2104519
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
INCLUDE_DIRECTORIES(
ladanyi@538
     2
  ${PROJECT_SOURCE_DIR}
ladanyi@538
     3
  ${PROJECT_BINARY_DIR}
ladanyi@473
     4
)
ladanyi@141
     5
ladanyi@538
     6
LINK_DIRECTORIES(${PROJECT_BINARY_DIR}/lemon)
ladanyi@141
     7
alpar@225
     8
SET(DEMOS
ladanyi@141
     9
  arg_parser_demo
ladanyi@141
    10
  graph_to_eps_demo
ladanyi@141
    11
  lgf_demo)
ladanyi@141
    12
alpar@225
    13
FOREACH(DEMO_NAME ${DEMOS})
alpar@225
    14
  ADD_EXECUTABLE(${DEMO_NAME} ${DEMO_NAME}.cc)
alpar@225
    15
  TARGET_LINK_LIBRARIES(${DEMO_NAME} lemon)
alpar@225
    16
ENDFOREACH(DEMO_NAME)