From ff31ebc51932daf3fb3986b967fa27fe3a499c52 Mon Sep 17 00:00:00 2001 From: Tyge Løvset Date: Mon, 8 Nov 2021 18:26:44 +0100 Subject: minor --- benchmarks/shootout_hashmaps.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'benchmarks/shootout_hashmaps.cpp') diff --git a/benchmarks/shootout_hashmaps.cpp b/benchmarks/shootout_hashmaps.cpp index 61a86832..382a6334 100644 --- a/benchmarks/shootout_hashmaps.cpp +++ b/benchmarks/shootout_hashmaps.cpp @@ -259,8 +259,8 @@ int main(int argc, char* argv[]) int n_mill = argc >= 2 ? atoi(argv[1]) : DEFAULT_N_MILL; int keybits = argc >= 3 ? atoi(argv[2]) : DEFAULT_KEYBITS; int n = n_mill * 1000000; - int N0 = n, N1 = n, N2 = n/2, N3 = n, N4 = n, N5 = n; - seed = 1636306010; // time(NULL); + int N0 = n, N1 = n/2, N2 = n/2, N3 = n, N4 = n, N5 = n; + seed = time(NULL); // 1636306010; printf("\nUnordered hash map shootout\n"); printf("CMAP = https://github.com/tylov/STC\n" -- cgit v1.2.3