From d1cb6dbac7648576fa4b68386ba22623e9315aa5 Mon Sep 17 00:00:00 2001 From: Mrna Date: Tue, 21 Oct 2025 07:51:46 +0200 Subject: [PATCH] TODO comment --- cpp/src/positional_container.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/cpp/src/positional_container.hpp b/cpp/src/positional_container.hpp index e131d2d..e8fd57e 100644 --- a/cpp/src/positional_container.hpp +++ b/cpp/src/positional_container.hpp @@ -231,5 +231,6 @@ private: // Also it might be useful to have T -> location lookup // Note: hash of std::shared_ptr may give us trouble if we free the memory and new one points // to the same location, maybe it would be better to hash the object itself? + // TODO how about using counting bloom filter for this? std::unordered_map, coord_type> m_ReverseGridLookup; };