aboutsummaryrefslogtreecommitdiff
path: root/hashmap.ha
diff options
context:
space:
mode:
authorPolesznyák Márk <contact@pml68.dev>2026-04-16 15:42:20 +0200
committerPolesznyák Márk <contact@pml68.dev>2026-04-16 15:42:20 +0200
commit686cf105d51868c226c16e9d5b67cacf9398e1bc (patch)
tree93b43789707a5159b7685b5f7c56257b1df168c2 /hashmap.ha
parentdocs: add README (diff)
downloadhare-1brc-686cf105d51868c226c16e9d5b67cacf9398e1bc.tar.gz
feat: increase hashmap capacity (16384 -> 32768)HEADmaster
Diffstat (limited to 'hashmap.ha')
-rw-r--r--hashmap.ha2
1 files changed, 1 insertions, 1 deletions
diff --git a/hashmap.ha b/hashmap.ha
index 81c9f94..041009a 100644
--- a/hashmap.ha
+++ b/hashmap.ha
@@ -1,4 +1,4 @@
-def HASHMAP_SIZE: size = 1 << 14;
+def HASHMAP_SIZE: size = 1 << 15;
type hashmap = [HASHMAP_SIZE](size, stat);