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 {