diff options
author | lloyd <[email protected]> | 2010-10-12 20:34:45 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-10-12 20:34:45 +0000 |
commit | 97e8d6086171772cd5e45bcf2f5b1ea1e38e6bf5 (patch) | |
tree | 5e9ad006ae3acf4b00e8650ec85a9c1a0ef17f78 /doc/examples/bench.cpp | |
parent | a6bfb4a4b118e347456e4c6c4dddbcb136f6ba13 (diff) |
Fix compilation of examples; benchmarking and RNG changes mostly
Diffstat (limited to 'doc/examples/bench.cpp')
-rw-r--r-- | doc/examples/bench.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/bench.cpp b/doc/examples/bench.cpp index e20c8eea5..20e6ec40b 100644 --- a/doc/examples/bench.cpp +++ b/doc/examples/bench.cpp @@ -74,7 +74,7 @@ void benchmark_algo(const std::string& algo, Algorithm_Factory& af = global_state().algorithm_factory(); std::map<std::string, double> speeds = - algorithm_benchmark(algo, milliseconds, rng, af); + algorithm_benchmark(algo, af, rng, milliseconds, 16*1024); std::cout << algo << ":"; |