tools/CMakeLists.txt
author Peter Kovacs <kpeter@inf.elte.hu>
Wed, 29 Apr 2009 03:15:24 +0200
changeset 636 6c408d864fa1
parent 511 c458e02723b1
child 681 9c7639f3a741
permissions -rw-r--r--
Support negative costs and bounds in NetworkSimplex (#270)

* The interface is reworked to support negative costs and bounds.
- ProblemType and problemType() are renamed to
SupplyType and supplyType(), see also #234.
- ProblemType type is introduced similarly to the LP interface.
- 'bool run()' is replaced by 'ProblemType run()' to handle
unbounded problem instances, as well.
- Add INF public member constant similarly to the LP interface.
* Remove capacityMap() and boundMaps(), see also #266.
* Update the problem definition in the MCF module.
* Remove the usage of Circulation (and adaptors) for checking feasibility.
Check feasibility by examining the artifical arcs instead (after solving
the problem).
* Additional check for unbounded negative cycles found during the
algorithm (it is possible now, since negative costs are allowed).
* Fix in the constructor (the value types needn't be integer any more),
see also #254.
* Improve and extend the doc.
* Rework the test file and add test cases for negative costs and bounds.
     1 INCLUDE_DIRECTORIES(
     2   ${PROJECT_SOURCE_DIR}
     3   ${PROJECT_BINARY_DIR}
     4 )
     5 
     6 LINK_DIRECTORIES(${PROJECT_BINARY_DIR}/lemon)
     7 
     8 ADD_EXECUTABLE(lgf-gen lgf-gen.cc)
     9 TARGET_LINK_LIBRARIES(lgf-gen lemon)
    10 
    11 ADD_EXECUTABLE(dimacs-to-lgf dimacs-to-lgf.cc)
    12 TARGET_LINK_LIBRARIES(dimacs-to-lgf lemon)
    13 
    14 ADD_EXECUTABLE(dimacs-solver dimacs-solver.cc)
    15 TARGET_LINK_LIBRARIES(dimacs-solver lemon)
    16 
    17 INSTALL(
    18   TARGETS lgf-gen dimacs-to-lgf dimacs-solver
    19   RUNTIME DESTINATION bin
    20   COMPONENT bin
    21 )
    22 
    23 IF(NOT WIN32)
    24   INSTALL(
    25     PROGRAMS ${CMAKE_CURRENT_SOURCE_DIR}/lemon-0.x-to-1.x.sh
    26     DESTINATION bin
    27     COMPONENT bin)
    28 ENDIF(NOT WIN32)