From cecea2eaff9e6693b47f308ac5078f8b37a7726d Mon Sep 17 00:00:00 2001 From: cat Date: Mon, 2 Mar 2026 17:28:14 +0200 Subject: [PATCH] Upped the load factor to reduce allocations --- headers/Containers/DualkeyMap.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headers/Containers/DualkeyMap.hpp b/headers/Containers/DualkeyMap.hpp index afdd7ab..ead2f95 100644 --- a/headers/Containers/DualkeyMap.hpp +++ b/headers/Containers/DualkeyMap.hpp @@ -304,7 +304,7 @@ private: std::vector> queryResults; queryResults.reserve(2048); Containers::Hashmap *, - 3.0f, 2048, 0.01f> // Aggressive hashmap :o + 8.0f, 2048, 0.01f> // Aggressive hashmap :o locations; for (DualkeyHash *hash : hashList) {