Anatoliy Kuznetsov
Anatoliy Kuznetsov
Thank you! BitMagic implements a C language interface which makes it easy to create wrappers for other languages (including Java/JNI). Internal design allows compilation without C++ runtime to make language...
Are you asking for an example on how to use BM? Could you provide more info on the case, I am not sure I understand the 128x128 locations problem really...
Yes, i understand the problem. The closest example publicly available now is: https://github.com/tlk00/BitMagic/tree/master/samples/xsample07a It creates binary fingerprints and implements primitive (but relatively fast) clusterization using similarity measure (COUNT_AND). Not quite...
Surest thing. I would certainly appreciate your example, please share it.
It is indeed the case, bvector is actually size-less and technically it contains a whole tail of zeroes at the end. It is possible to use keep_range() to clip the...
Do you have a small code snippet for me to try? (I have clang on Mac). Or maybe even a patch?
I (think) I fixed the issue in the latest master branch. Please pick the new version and try. Master is supposed to be reasonable production grade at this point.
What is the compiler (ok, i see that it is VS 22) and the platform and the compile options here? These BSR asms are pretty old... always worked. Some compilers...
We are looking at this issue and suspect a compilation bug... Can you please post a disassembly printout at the place of failure?
BM allocates in blocks of 64K bits (or less) on demand, so if you are not setting beyond N - it will not allocate. bvector will also do not allocate...