80template <data_layout data_layout_mode_ = data_layout::uncompressed>
85 template <data_layout data_layout_mode>
94 size_t size_in_bits{};
103 13'043'817'825'332'782'213ULL,
104 10'650'232'656'628'343'401ULL,
105 16'499'269'484'942'379'435ULL,
106 4'893'150'838'803'335'377ULL};
115 inline constexpr size_t hash_and_fit(
size_t h,
size_t const seed)
const
118 h ^=
h >> hash_shift;
119 h *= 11'400'714'819'323'198'485ULL;
121#ifdef __SIZEOF_INT128__
158 size_in_bits = size.get();
159 hash_funs =
funs.get();
161 if (hash_funs == 0 || hash_funs > 5)
162 throw std::logic_error{
"The number of hash functions must be > 0 and <= 5."};
163 if (size_in_bits == 0)
167 data = sdsl::bit_vector(size_in_bits);
186 data = sdsl::sd_vector<>{
bf.data};
207 for (
size_t i = 0;
i < hash_funs; ++
i)
209 size_t idx = hash_and_fit(value, hash_seeds[
i]);
230 sdsl::util::_set_zero_bits(data);
250 for (
size_t i = 0;
i < hash_funs;
i++)
252 size_t idx = hash_and_fit(value, hash_seeds[
i]);
279 template <std::ranges::range value_range_t>
282 static_assert(std::ranges::input_range<value_range_t>,
"The values must model input_range.");
283 static_assert(std::unsigned_integral<std::ranges::range_value_t<value_range_t>>,
284 "An individual value must be an unsigned integral.");
288 for (
auto && value : values)
369 template <cereal_archive archive_t>
The Bloom Filter. A data structure that efficiently answers set-membership queries.
Definition bloom_filter.hpp:82
friend bool operator!=(bloom_filter const &lhs, bloom_filter const &rhs) noexcept
Test for inequality.
Definition bloom_filter.hpp:334
constexpr data_type & raw_data() noexcept
Provides direct, unsafe access to the underlying data structure.
Definition bloom_filter.hpp:350
bloom_filter(bloom_filter &&)=default
Defaulted.
static constexpr data_layout data_layout_mode
Indicates whether the Bloom Filter is compressed.
Definition bloom_filter.hpp:131
constexpr data_type const & raw_data() const noexcept
Provides direct, unsafe access to the underlying data structure.
Definition bloom_filter.hpp:356
bloom_filter & operator=(bloom_filter const &)=default
Defaulted.
bool contains(size_t const value) const noexcept
Check whether a value is present in the Bloom Filter.
Definition bloom_filter.hpp:248
bloom_filter(bloom_filter< data_layout::uncompressed > const &bf)
Construct a compressed Bloom Filter.
Definition bloom_filter.hpp:181
friend bool operator==(bloom_filter const &lhs, bloom_filter const &rhs) noexcept
Test for equality.
Definition bloom_filter.hpp:323
void reset() noexcept
Remove all values from the Bloom Filter by setting all bits to 0.
Definition bloom_filter.hpp:227
bloom_filter(bloom_filter const &)=default
Defaulted.
size_t hash_function_count() const noexcept
Returns the number of hash functions used in the Bloom Filter.
Definition bloom_filter.hpp:301
size_t count(value_range_t &&values) const noexcept
Counts the occurrences for all values in a range.
Definition bloom_filter.hpp:280
bloom_filter()=default
Defaulted.
size_t bit_size() const noexcept
Returns the size of the underlying bitvector.
Definition bloom_filter.hpp:309
bloom_filter & operator=(bloom_filter &&)=default
Defaulted.
void emplace(size_t const value) noexcept
Inserts a value into the Bloom Filter.
Definition bloom_filter.hpp:204
~bloom_filter()=default
Defaulted.
bloom_filter(seqan3::bin_size size, seqan3::hash_function_count funs=seqan3::hash_function_count{2u})
Construct an uncompressed Bloom Filter.
Definition bloom_filter.hpp:155
A "pretty printer" for most SeqAn data structures and related types.
Definition debug_stream_type.hpp:79
data_layout
Determines if the Interleaved Bloom Filter is compressed.
Definition interleaved_bloom_filter.hpp:25
@ uncompressed
The Interleaved Bloom Filter is uncompressed.
Definition interleaved_bloom_filter.hpp:26
@ compressed
The Interleaved Bloom Filter is compressed.
Definition interleaved_bloom_filter.hpp:27
Provides seqan3::interleaved_bloom_filter.
The main SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
A strong type that represents the number of bits for each bin in the seqan3::interleaved_bloom_filter...
Definition interleaved_bloom_filter.hpp:40
A strong type that represents the number of hash functions for the seqan3::interleaved_bloom_filter.
Definition interleaved_bloom_filter.hpp:47
strong_type for seed.
Definition minimiser_hash.hpp:22