lemon/config.h.in
author Peter Kovacs <kpeter@inf.elte.hu>
Wed, 29 Apr 2009 03:15:24 +0200
changeset 636 6c408d864fa1
parent 500 2b6d5d22bb23
child 622 20dac2104519
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.
alpar@500
     1
/* Define to 1 if you have long long */
alpar@500
     2
#undef HAVE_LONG_LONG
alpar@500
     3
alpar@457
     4
/* Define to 1 if you have any LP solver. */
alpar@457
     5
#undef HAVE_LP
alpar@457
     6
alpar@457
     7
/* Define to 1 if you have any MIP solver. */
alpar@457
     8
#undef HAVE_MIP
alpar@457
     9
ladanyi@1
    10
/* Define to 1 if you have CPLEX. */
ladanyi@1
    11
#undef HAVE_CPLEX
ladanyi@1
    12
ladanyi@1
    13
/* Define to 1 if you have GLPK. */
ladanyi@1
    14
#undef HAVE_GLPK
alpar@496
    15
deba@458
    16
/* Define to 1 if you have SOPLEX */
deba@459
    17
#undef HAVE_SOPLEX
deba@459
    18
deba@459
    19
/* Define to 1 if you have CLP */
deba@459
    20
#undef HAVE_CLP
deba@559
    21
deba@559
    22
/* Define to 1 if you have CBC */
deba@559
    23
#undef HAVE_CBC