benchmark/Makefile.am
author alpar
Mon, 05 Dec 2005 17:03:31 +0000
changeset 1847 7cbc12e42482
parent 1435 8e85e6bbefdf
child 2084 59769591eb60
permissions -rw-r--r--
- Changed and improved Timer interface
- several new member functions
- reset() -> restart() renaming
- TimeReport: a Timer that prints a report on destruction.
- counter.h: a tool to measure the number of streps of algorithms.
- New documentation module for time measuring and counting.
     1 AM_CPPFLAGS = -I$(top_srcdir)
     2 
     3 noinst_HEADERS = bench_tools.h
     4 
     5 noinst_PROGRAMS = graph-bench hcube bfs-bench radix_sort-bench
     6 
     7 graph_bench_SOURCES = graph-bench.cc
     8 
     9 hcube_SOURCES = hcube.cc
    10 
    11 bfs_bench_SOURCES = bfs-bench.cc
    12 
    13 radix_sort_bench_SOURCES = radix_sort-bench.cc