From f3f3a80e6dbbd3417cd9a1895ab740f452cf8b89 Mon Sep 17 00:00:00 2001 From: Siarhei Fedartsou Date: Sat, 11 May 2024 22:07:00 +0200 Subject: [PATCH] Add benchmarks comparison job --- src/benchmarks/static_rtree.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/benchmarks/static_rtree.cpp b/src/benchmarks/static_rtree.cpp index b9c6fdd2c..c09a66786 100644 --- a/src/benchmarks/static_rtree.cpp +++ b/src/benchmarks/static_rtree.cpp @@ -44,10 +44,8 @@ void benchmarkQuery(const std::vector &queries, } TIMER_STOP(query); - std::cout << name << ": " << TIMER_MSEC(query) << "ms" - << " -> " << TIMER_MSEC(query) / queries.size() << " ms/query " - << "(" << TIMER_MSEC(query) << "ms" - << ")" << std::endl; + std::cout << name << ":\n" << TIMER_MSEC(query) << "ms" + << " -> " << TIMER_MSEC(query) / queries.size() << " ms/query" << std::endl; } void benchmark(BenchStaticRTree &rtree, unsigned num_queries)