tools/Makefile.am
author Peter Kovacs <kpeter@inf.elte.hu>
Thu, 06 Aug 2009 20:12:43 +0200
changeset 760 83ce7ce39f21
parent 526 28b154307c0d
permissions -rw-r--r--
Rework and fix the implementation of MinMeanCycle (#179)

- Fix the handling of the cycle means.
- Many implementation improvements:
- More efficient data storage for the strongly connected
components.
- Better handling of BFS queues.
- Merge consecutive BFS searches (perform two BFS searches
instead of three).

This version is about two times faster on average and an order of
magnitude faster if there are a lot of strongly connected components.
     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