demo/CMakeLists.txt
author Peter Kovacs <kpeter@inf.elte.hu>
Tue, 12 May 2009 12:06:40 +0200
changeset 663 8b0df68370a4
parent 549 ba659d676331
parent 499 d8ca76573eb3
child 679 9c7639f3a741
permissions -rw-r--r--
Fix the GEQ/LEQ handling in NetworkSimplex + improve doc (#291)

- Fix the optimality conditions for the GEQ/LEQ form.
- Fix the initialization of the algortihm. It ensures correct
solutions and it is much faster for the inequality forms.
- Fix the pivot rules to search all the arcs that have to be
allowed to get in the basis.
- Better block size for the Block Search pivot rule.
- Improve documentation of the problem and move it to a
separate page.
ladanyi@499
     1
INCLUDE_DIRECTORIES(
ladanyi@549
     2
  ${PROJECT_SOURCE_DIR}
ladanyi@499
     3
  ${PROJECT_BINARY_DIR}
ladanyi@499
     4
)
ladanyi@141
     5
ladanyi@549
     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)