demo/Makefile.am
author Peter Kovacs <kpeter@inf.elte.hu>
Wed, 29 Apr 2009 03:15:24 +0200
changeset 636 6c408d864fa1
parent 400 fa341dd6ab23
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@556
     1
AM_CXXFLAGS = $(WARNINGCXXFLAGS)
ladanyi@1
     2
ladanyi@556
     3
AM_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir)
ladanyi@556
     4
LDADD = $(top_builddir)/lemon/libemon.la
ladanyi@1
     5
ladanyi@556
     6
EXTRA_DIST = \
ladanyi@556
     7
	CMakeLists.txt \
ladanyi@556
     8
	digraph.lgf
ladanyi@1
     9
ladanyi@556
    10
noinst_PROGRAMS = \
ladanyi@556
    11
	arg_parser_demo \
ladanyi@556
    12
	graph_to_eps_demo \
ladanyi@556
    13
	lgf_demo
alpar@85
    14
ladanyi@556
    15
arg_parser_demo_SOURCES = arg_parser_demo.cc
ladanyi@556
    16
graph_to_eps_demo_SOURCES = graph_to_eps_demo.cc
ladanyi@556
    17
lgf_demo_SOURCES = lgf_demo.cc