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.
     1 INCLUDE_DIRECTORIES(
     2   ${PROJECT_SOURCE_DIR}
     3   ${PROJECT_BINARY_DIR}
     4 )
     5 
     6 LINK_DIRECTORIES(${PROJECT_BINARY_DIR}/lemon)
     7 
     8 SET(DEMOS
     9   arg_parser_demo
    10   graph_to_eps_demo
    11   lgf_demo)
    12 
    13 FOREACH(DEMO_NAME ${DEMOS})
    14   ADD_EXECUTABLE(${DEMO_NAME} ${DEMO_NAME}.cc)
    15   TARGET_LINK_LIBRARIES(${DEMO_NAME} lemon)
    16 ENDFOREACH(DEMO_NAME)