From 730fc4e9bae5a157c83db8061c2c6831a297e959 Mon Sep 17 00:00:00 2001 From: Douglas Rumbaugh Date: Wed, 7 Jun 2023 12:23:38 -0400 Subject: Interface adjustments Layout and Delete Policies are now specified via template parameters, and rejection sampling has been removed as an argument to the mutable buffer constructor. --- include/framework/MutableBuffer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/framework/MutableBuffer.h') diff --git a/include/framework/MutableBuffer.h b/include/framework/MutableBuffer.h index 2beb27f..9eea5c8 100644 --- a/include/framework/MutableBuffer.h +++ b/include/framework/MutableBuffer.h @@ -29,7 +29,7 @@ namespace de { template class MutableBuffer { public: - MutableBuffer(size_t capacity, bool rej_sampling, size_t max_tombstone_cap) + MutableBuffer(size_t capacity, size_t max_tombstone_cap) : m_cap(capacity), m_tombstone_cap(max_tombstone_cap), m_reccnt(0) , m_tombstonecnt(0), m_weight(0), m_max_weight(0) { auto len = capacity * sizeof(Wrapped); -- cgit v1.2.3