roaring and sparsemap should identify the same spans

This commit is contained in:
Gregory Burd 2024-05-03 15:20:35 -04:00
parent b9612f12cc
commit fcab709f62

View file

@ -780,9 +780,14 @@ main(void)
rl = offset; rl = offset;
e = nsts(); e = nsts();
} }
assert(verify_span_midl(list, rl, n)); /*
assert(verify_span_sparsemap(map, rl, n)); if (rl != sl) {
assert(verify_span_roaring(rbm, rl, n)); assert(verify_span_midl(list, rl, n));
assert(verify_span_sparsemap(map, rl, n));
assert(verify_span_roaring(rbm, rl, n));
}
*/
assert(rl == sl);
bool prefer_mdb_idl_loc = (bool)xorshift32() % 2; bool prefer_mdb_idl_loc = (bool)xorshift32() % 2;