BitMagic icon indicating copy to clipboard operation
BitMagic copied to clipboard

BitMagic Library

Results 10 BitMagic issues
Sort by recently updated
recently updated
newest added

Hi, First I want to thank you for this awesome library. I'm experimenting on binary NLP technics and I was wondering if you could publish a bitmagic version of SOM...

Hello, It is an amazing project. I was wondering if a Python interface of this library is planned in the short-term. Warmly, Roy.

help wanted

do you think that BitMagic could be installed with https://conan.io/ ?

I'm packaging in `guix` which has specific tooling for projects built with cmake. This requires that CMakeLists.txt have information for handling installation of files. I think I'll be able to...

No coredumps, aborts or crashes are allowed under JVM. May be implemented as a platform-specific macro at the compilation stage. Example: https://github.com/tlk00/BitMagic/blob/01f15914f0cbfe7672497590b72a4a5af6664bd4/src/bm.h#L1923

Hi, It appears that there is a bug in the implementation of the [flip](http://bitmagic.io/doxygen/html/classbm_1_1bvector.html#aaf87e9eb001e03c8828c7a92d9ab4e90) function (full vector flip). The flipping seems to assume that there is a large tail of...

Hi there, I'm a big fan of BitMagic and we use it in our database for a variety of things. I'm trying to build with Clang for the first time...

I’ve scanned BitMagic with MEMCHECK and it has triggered on BitMagic/src/bmalloc.h line 76. I'm not sure whether this is an actual issue, or whether code of BitMagic is too sophisticated...

``` #include "Services/ScreenCompatibility/BitMagic/src/bm.h" #include "Services/ScreenCompatibility/BitMagic/src/bmserial.h" #include "Services/ScreenCompatibility/BitMagic/src/bmundef.h" ...... void test_bm() { bm::bvector f3; f3.clear(); f3.set(65535); f3.set(65526); f3.set(65486); f3.set(65447); f3.set(65504); f3.set(32639); f3.set(18873); f3.set(87); f3.set(145); f3.set(48); f3.set(105); f3.set(8); f3.set(66); f3.set(25); bm::serializer ser;...

In my application, I can't afford to have bm allocate after all initialization is done. How can I initialize the allocator or bvector such that it is guaranteed not to...