Compare commits

...

2 Commits

Author SHA1 Message Date
cat
cecea2eaff Upped the load factor to reduce allocations 2026-03-02 17:28:14 +02:00
cat
e185c77cb8 Fixed speeeling miskate :) 2026-03-02 17:27:06 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -304,7 +304,7 @@ private:
std::vector<MultiQueryResult<OppositeKey, keyCount>> queryResults;
queryResults.reserve(2048);
Containers::Hashmap<OppositeKey, MultiQueryResult<OppositeKey, keyCount> *,
3.0f, 2048, 0.01f> // Aggressive hashmap :o
8.0f, 2048, 0.01f> // Aggressive hashmap :o
locations;
for (DualkeyHash *hash : hashList) {

View File

@@ -32,7 +32,7 @@ public:
// Empty bucket
if (!storage[keyHashPosition].empty()) {
// Throws
Systems::Logging::Log("Trying to inserting same key twice! Throwing...",
Systems::Logging::Log("Trying to insert the same key twice! Throwing...",
"Hashmap", Systems::Logging::LogLevel::Error,
Has(key));
}