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.
     1 AM_CPPFLAGS = -I$(top_srcdir)
     2 
     3 noinst_HEADERS = bench_tools.h
     4 
     5 noinst_PROGRAMS = \
     6 	graph-bench \
     7 	hcube \
     8 	swap_bipartite_bench \
     9 	bfs-bench \
    10 	radix_sort-bench \
    11 	swap_bipartite_bench
    12 
    13 graph_bench_SOURCES = graph-bench.cc
    14 
    15 hcube_SOURCES = hcube.cc
    16 
    17 bfs_bench_SOURCES = bfs-bench.cc
    18 
    19 radix_sort_bench_SOURCES = radix_sort-bench.cc
    20 
    21 swap_bipartite_bench_SOURCES = swap_bipartite_bench.cc