tools/Makefile.am
author Peter Kovacs <kpeter@inf.elte.hu>
Thu, 12 Nov 2009 23:26:13 +0100
changeset 872 fa6f37d7a25b
parent 573 28b154307c0d
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 EXTRA_DIST += \
     2 	tools/CMakeLists.txt
     3 
     4 if WANT_TOOLS
     5 
     6 bin_PROGRAMS += \
     7 	tools/dimacs-solver \
     8 	tools/dimacs-to-lgf \
     9 	tools/lgf-gen
    10 
    11 dist_bin_SCRIPTS += tools/lemon-0.x-to-1.x.sh
    12 
    13 endif WANT_TOOLS
    14 
    15 tools_dimacs_solver_SOURCES = tools/dimacs-solver.cc
    16 tools_dimacs_to_lgf_SOURCES = tools/dimacs-to-lgf.cc
    17 tools_lgf_gen_SOURCES = tools/lgf-gen.cc