Zachary Dremann

Results 28 issues of Zachary Dremann

Move to the newest rust edition, cargo clippy fixes, improved benchmark grouping, etc.

In the case the iterator provided to `reset_and_prefill_window` was shorter than `window_size - 1`, the window would not be fully reset, and future `slide`s will shift out previous data, and...

I was wondering how large the try-haxe folder is getting, with auto-branching. If space becomes a problem, I thought of a solution using git as as a repository to store...

Calculating the sum of values requires visiting every item in the bitmap: Other than this, all other statistics can be calculated by only visiting each *container*. Is it worth either:...

Once RoaringBitmap/CRoaring#628 is in, use the new function rather than our manual implemntation.

Fixes #635, and adds some tests @SLieve, is this the right place to do this? The segfault under valgrind: ``` [ RUN ] test_intersect_with_range ==648093== Invalid read of size 1...

> Oh, the amalgamated file is $ROOT/roaring.c instead of src/roaring.c. The .gitignore file functions correctly in Git, but tools like fd and ripgrep somehow also ignore src/roaring.c. It will work...

```c roaring64_bitmap_t* r = roaring64_bitmap_create(); roaring64_bitmap_intersect_with_range(r, 0, 50000); // Segfault here ```