Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions xls/data_structures/binary_decision_diagram.h
Original file line number Diff line number Diff line change
Expand Up @@ -329,8 +329,9 @@ class BinaryDecisionDiagram {
};
using LossyArray = std::vector<IteCacheEntry>;

static constexpr size_t kLossyCacheSize = size_t{1} << 20;
static constexpr size_t kCutoverThreshold = size_t{1} << 20;
// Each entry in the lossy cache is 16 bytes, so this is 2MB.
static constexpr size_t kLossyCacheSize = size_t{1} << 17;
static constexpr size_t kCutoverThreshold = size_t{1} << 17;

DynamicIteCache() : cache_(ExactMap()) {}

Expand Down
Loading