demo/Makefile.am
author Peter Kovacs <kpeter@inf.elte.hu>
Thu, 12 Nov 2009 23:26:13 +0100
changeset 806 fa6f37d7a25b
parent 400 fa341dd6ab23
permissions -rw-r--r--
Entirely rework CapacityScaling (#180)

- Use the new interface similarly to NetworkSimplex.
- Rework the implementation using an efficient internal structure
for handling the residual network. This improvement made the
code much faster (up to 2-5 times faster on large graphs).
- Handle GEQ supply type (LEQ is not supported).
- Handle negative costs for arcs of finite capacity.
(Note that this algorithm cannot handle arcs of negative cost
and infinite upper bound, thus it returns UNBOUNDED if such
an arc exists.)
- Extend the documentation.
     1 AM_CXXFLAGS = $(WARNINGCXXFLAGS)
     2 
     3 AM_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir)
     4 LDADD = $(top_builddir)/lemon/libemon.la
     5 
     6 EXTRA_DIST = \
     7 	CMakeLists.txt \
     8 	digraph.lgf
     9 
    10 noinst_PROGRAMS = \
    11 	arg_parser_demo \
    12 	graph_to_eps_demo \
    13 	lgf_demo
    14 
    15 arg_parser_demo_SOURCES = arg_parser_demo.cc
    16 graph_to_eps_demo_SOURCES = graph_to_eps_demo.cc
    17 lgf_demo_SOURCES = lgf_demo.cc