tools/Makefile.am
author Peter Kovacs <kpeter@inf.elte.hu>
Sat, 25 Apr 2009 02:12:41 +0200
changeset 615 7c1324b35d89
parent 507 d9e43511d11c
child 676 0cd6d84103a4
permissions -rw-r--r--
Modify the interface of Suurballe (#266, #181)

- Move the parameters s and t from the constructor to the run()
function. It makes the interface capable for multiple run(s,t,k)
calls (possible improvement in the future) and it is more similar
to Dijkstra.
- Simliarly init() and findFlow(k) were replaced by init(s) and
findFlow(t,k). The separation of parameters s and t is for the
future plans of supporting multiple targets with one source node.
For more information see #181.
- LEMON_ASSERT for the Length type (check if it is integer).
- Doc improvements.
- Rearrange query functions.
- Extend test file.
ladanyi@1
     1
if WANT_TOOLS
ladanyi@1
     2
alpar@385
     3
bin_PROGRAMS += \
alpar@510
     4
	tools/dimacs-solver \
alpar@507
     5
	tools/dimacs-to-lgf \
alpar@507
     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@510
    12
tools_dimacs_solver_SOURCES = tools/dimacs-solver.cc
alpar@385
    13
tools_dimacs_to_lgf_SOURCES = tools/dimacs-to-lgf.cc
alpar@507
    14
tools_lgf_gen_SOURCES = tools/lgf-gen.cc