From 3e828f0a4627be887393ab9c3d300d7882864d1e Mon Sep 17 00:00:00 2001 From: Varun Agrawal Date: Fri, 24 Jan 2025 12:09:30 -0500 Subject: [PATCH] report in seconds --- examples/Hybrid_City10000.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Hybrid_City10000.cpp b/examples/Hybrid_City10000.cpp index 481d7a03d..816879912 100644 --- a/examples/Hybrid_City10000.cpp +++ b/examples/Hybrid_City10000.cpp @@ -205,7 +205,7 @@ int main(int argc, char* argv[]) { clock_t end_time = clock(); clock_t total_time = end_time - start_time; - cout << "total_time: " << total_time / CLOCKS_PER_SEC << " seconds" << endl; + cout << "total_time: " << total_time / CLOCKS_PER_SEC << " seconds" << endl; /// Write results to file write_results(results, (key_t + 1), "HybridISAM_city10000.txt");