benchmark/Makefile.am
author kpeter
Mon, 18 Feb 2008 03:32:06 +0000
changeset 2575 e866e288cba6
parent 2244 a28b4e0aa787
permissions -rw-r--r--
Major improvements in NetworkSimplex.

Main changes:
- Use -potenital[] instead of potential[] to conform to the usual
terminology.
- Use function parameter instead of #define commands to select pivot rule.
- Use much faster implementation for the candidate list pivot rule.
It is about 5-20 times faster now.
- Add a new pivot rule called "Limited Search" that is a modified
version of "Block Search". It is about 25 percent faster on rather
sparse graphs.
- By default "Limited Search" is used for sparse graphs and
"Block Search" is used otherwise. This combined method is the most
efficient on every input class.
- Change the name of private members to start with "_".
- Change the name of function parameters not to start with "_".
- Remove unnecessary documentation for private members.
- Many doc improvements.
ladanyi@2119
     1
EXTRA_DIST += \
ladanyi@2119
     2
	benchmark/Makefile
alpar@2235
     3
	benchmark/edge_lookup_test
ladanyi@2119
     4
ladanyi@2108
     5
noinst_HEADERS += benchmark/bench_tools.h
ladanyi@1351
     6
ladanyi@2108
     7
if WANT_BENCHMARK
ladanyi@704
     8
ladanyi@2108
     9
noinst_PROGRAMS += \
ladanyi@2108
    10
	benchmark/graph-bench \
ladanyi@2108
    11
	benchmark/hcube \
ladanyi@2108
    12
	benchmark/swap_bipartite_bench \
ladanyi@2108
    13
	benchmark/bfs-bench \
ladanyi@2108
    14
	benchmark/radix_sort-bench \
alpar@2235
    15
	benchmark/swap_bipartite_bench \
alpar@2244
    16
	benchmark/random_bench \
deba@2341
    17
	benchmark/edge_lookup \
deba@2341
    18
	benchmark/min_cut
ladanyi@704
    19
ladanyi@2108
    20
endif WANT_BENCHMARK
alpar@708
    21
ladanyi@2108
    22
benchmark_graph_bench_SOURCES = benchmark/graph-bench.cc
alpar@742
    23
ladanyi@2108
    24
benchmark_hcube_SOURCES = benchmark/hcube.cc
deba@1833
    25
ladanyi@2108
    26
benchmark_bfs_bench_SOURCES = benchmark/bfs-bench.cc
deba@2084
    27
ladanyi@2108
    28
benchmark_radix_sort_bench_SOURCES = benchmark/radix_sort-bench.cc
ladanyi@2108
    29
ladanyi@2108
    30
benchmark_swap_bipartite_bench_SOURCES = benchmark/swap_bipartite_bench.cc
alpar@2235
    31
alpar@2244
    32
benchmark_random_bench_SOURCES = benchmark/random_bench.cc
alpar@2244
    33
alpar@2235
    34
benchmark_edge_lookup_SOURCES = benchmark/edge_lookup.cc
deba@2341
    35
deba@2341
    36
benchmark_min_cut_SOURCES = benchmark/min_cut.cc