Commit 59daf188 by Abseil Team Committed by Copybara-Service

Increase GraphCycles::PointerMap size

PiperOrigin-RevId: 612509928
Change-Id: I90de2e6bd229bf5cf71a27e9c491bc2794e9265f
parent 7bd9ff91
...@@ -333,7 +333,7 @@ class PointerMap { ...@@ -333,7 +333,7 @@ class PointerMap {
private: private:
// Number of buckets in hash table for pointer lookups. // Number of buckets in hash table for pointer lookups.
static constexpr uint32_t kHashTableSize = 8171; // should be prime static constexpr uint32_t kHashTableSize = 262139; // should be prime
const Vec<Node*>* nodes_; const Vec<Node*>* nodes_;
std::array<int32_t, kHashTableSize> table_; std::array<int32_t, kHashTableSize> table_;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment