benchmark/Makefile.am
author deba
Mon, 19 Jun 2006 13:44:06 +0000
changeset 2101 439b7f21ccc4
parent 2084 59769591eb60
child 2108 f2c532541730
permissions -rw-r--r--
Improvement:

The item sets are written in the order sorted by the labels.

It solves the problem if we read a graph from a file and
then write it back then the nodes will be reversed.
It can be switched off with the LemonWriter interface.
ladanyi@1435
     1
AM_CPPFLAGS = -I$(top_srcdir)
ladanyi@1351
     2
ladanyi@1351
     3
noinst_HEADERS = bench_tools.h
ladanyi@704
     4
deba@2084
     5
noinst_PROGRAMS = \
deba@2084
     6
	graph-bench \
deba@2084
     7
	hcube \
deba@2084
     8
	swap_bipartite_bench \
deba@2084
     9
	bfs-bench \
klao@2099
    10
	radix_sort-bench \
deba@2084
    11
	swap_bipartite_bench
ladanyi@704
    12
ladanyi@1351
    13
graph_bench_SOURCES = graph-bench.cc
alpar@708
    14
ladanyi@1351
    15
hcube_SOURCES = hcube.cc
alpar@742
    16
ladanyi@1351
    17
bfs_bench_SOURCES = bfs-bench.cc
deba@1833
    18
deba@1833
    19
radix_sort_bench_SOURCES = radix_sort-bench.cc
deba@2084
    20
klao@2099
    21
swap_bipartite_bench_SOURCES = swap_bipartite_bench.cc