From 43a62696634d68d3bcb07cb11dd2a153722e6d06 Mon Sep 17 00:00:00 2001 From: greg Date: Mon, 2 Mar 2020 11:33:03 -0500 Subject: [PATCH] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index e5cad44..b3be4b3 100644 --- a/index.html +++ b/index.html @@ -205,7 +205,7 @@ for (int64_t i=0; i<cnt; ++i) // iterate over all values { unsigned int key = rsu.next(); // get next key to insert - size_t hashval = hasher(key); // compute its hash + size_t hashval = hash.hash(key); // compute its hash size_t idx = hash.subidx(hashval); // compute the submap index for this hash if (idx / modulo == thread_idx) // if the submap is suitable for this thread {