From 438feac7e56fee425d9c6f1a43298ff9dc5b71d1 Mon Sep 17 00:00:00 2001 From: Douglas Rumbaugh Date: Fri, 19 Apr 2024 17:38:16 -0400 Subject: Properly implemented support for iteratively decomposable problems --- benchmarks/include/standard_benchmarks.h | 6 ------ 1 file changed, 6 deletions(-) (limited to 'benchmarks') diff --git a/benchmarks/include/standard_benchmarks.h b/benchmarks/include/standard_benchmarks.h index 83e3aaa..f5af558 100644 --- a/benchmarks/include/standard_benchmarks.h +++ b/benchmarks/include/standard_benchmarks.h @@ -22,20 +22,17 @@ static double delete_proportion = 0.05; template static void run_queries(DE *extension, std::vector &queries) { - size_t total; for (size_t i=0; iquery(q); auto r = res.get(); - total += r.size(); } } template static void run_static_queries(S *shard, std::vector &queries) { - size_t total; for (size_t i=0; i &queries) { std::vector states = {state}; Q::process_query_states(q, states, nullptr); - auto res = Q::query(shard, state, q); - - total += res.size(); } } -- cgit v1.2.3