diff options
| author | Tyge Løvset <[email protected]> | 2021-11-08 18:26:44 +0100 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2021-11-08 18:26:44 +0100 |
| commit | ff31ebc51932daf3fb3986b967fa27fe3a499c52 (patch) | |
| tree | 4956e2502b25e7a7f9411e4d31df5675603b1810 /benchmarks/shootout_hashmaps.cpp | |
| parent | 02dfa9735234fd2676ce260e0ba4bc26e3e8b12f (diff) | |
| download | STC-modified-ff31ebc51932daf3fb3986b967fa27fe3a499c52.tar.gz STC-modified-ff31ebc51932daf3fb3986b967fa27fe3a499c52.zip | |
minor
Diffstat (limited to 'benchmarks/shootout_hashmaps.cpp')
| -rw-r--r-- | benchmarks/shootout_hashmaps.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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" |
