bkille / BitLib

Provides a bit-vector, an optimized replacement of the infamous std::vector<:b:ool>. In addition to the bit-vector, the library also provides implementations of STL algorithms tailored for bit-vectors.
BSD 3-Clause "New" or "Revised" License
68 stars 4 forks source link

Benchmark against `boost::dynamic_bitset`? #42

Closed Cons-Cat closed 2 months ago

Cons-Cat commented 1 year ago

My understanding is that one of the current popular solutions to this library's problem-statement is boost::dynamic_bitset. I think perhaps adding that to the benchmark might be useful for people considering this library.

bkille commented 2 months ago

Hi @Cons-Cat! Sorry for the late reply. I have some benchmarks to pinam45's dynamic_bitset implementation here, which seems to have a similar interface to Boost's.