tools/Makefile.am
author Peter Kovacs <kpeter@inf.elte.hu>
Wed, 29 Apr 2009 03:15:24 +0200
changeset 640 6c408d864fa1
parent 523 d9e43511d11c
child 674 0cd6d84103a4
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.
ladanyi@1
     1
if WANT_TOOLS
ladanyi@1
     2
alpar@385
     3
bin_PROGRAMS += \
alpar@526
     4
	tools/dimacs-solver \
alpar@523
     5
	tools/dimacs-to-lgf \
alpar@523
     6
	tools/lgf-gen
alpar@385
     7
alpar@310
     8
dist_bin_SCRIPTS += tools/lemon-0.x-to-1.x.sh
ladanyi@1
     9
ladanyi@1
    10
endif WANT_TOOLS
alpar@385
    11
alpar@526
    12
tools_dimacs_solver_SOURCES = tools/dimacs-solver.cc
alpar@385
    13
tools_dimacs_to_lgf_SOURCES = tools/dimacs-to-lgf.cc
alpar@523
    14
tools_lgf_gen_SOURCES = tools/lgf-gen.cc