Eric S. Tellez

Results 9 comments of Eric S. Tellez

Thanks for the info. It works. I made some trial-and-error exploration based on it and found that the following code works. ```julia using Aqua Aqua.test_all(SimilaritySearch, ambiguities=false) Aqua.test_ambiguities(SimilaritySearch) ``` It is...

Looking a bit more at the documentation, I think the issue comes with the default arguments to `test_ambiguities.` I don't know the implications This also works ```julia Aqua.test_ambiguities([SimilaritySearch, Core]) ```...

Hi, thank you. I am glad it works for you. The core idea of the new release is to make possible other kinds of applications. It removes some global context...

I found my self divagating on SimilaritySearch 0.11 instead of LoopVectorization deprecation for Julia 1.11 I am trying to figure out what to do... Best, Eric

No, but it has many @inbounds, i.e., if you access a database out of bounds, it will fail. Try running Julia with --check-bounds=no to find the error without any segmentation...

Since the failure is outside of the Polyester domain, you can see the index that fails to turn off the `@inbounds` macro (run Julia with --check-bounds=yes). You can also check...

Dear @jerryzhenleicai In addition to the previous changes, I also added support for other kinds of key-value types and iterators. These features changed the API and broke compatibility, so they...

Hi, GitHub Actions automatizes tests in this package. The idea is that after any push or pull request, a GHA container is run and verifies that tests are still passing....

I am happy with my private fork, but LevelDB is quite helpful and can positively impact people looking to create systems with the Julia language, mostly where LMDB is not...