We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55ec1b2 commit f6c0a07Copy full SHA for f6c0a07
src/sketch_columns.cpp
@@ -60,7 +60,7 @@ void FixedSizeSketchColumn::merge(FixedSizeSketchColumn &other) {
60
void FixedSizeSketchColumn::update(const vec_t update) {
61
vec_hash_t checksum = Bucket_Boruvka::get_index_hash(update, seed);
62
col_hash_t depth = Bucket_Boruvka::get_index_depth(update, seed, col_idx, capacity-1);
63
- assert(depth < capacity);
+ // assert(depth < capacity);
64
buckets[depth] ^= {update, checksum};
65
deterministic_bucket ^= {update, checksum};
66
}
0 commit comments