This repository was archived by the owner on Dec 26, 2023. It is now read-only.
Releases: martinus/robin-hood-hashing
Releases · martinus/robin-hood-hashing
robin_hood version 2.4.0
Minor performance improvement: keyToIdx
which helps practically everything, and added unrolling in findIdx
which helps find's.
robin_hood version 2.3.1
Much faster iteration, about 50% speedup. Now robin_hood
is by far the fastest in that regard.
Some minor fixes, more tests, more benchmarks, 32bit build for windows & linux & all tests work.
robin_hood version 2.2.0
I'm now using all available bits of the infobyte for hash, which makes searching faster and means that far less direct comparisons of the key are necessary. This especially helps for complex keys, e.g. std::string
.
robin_hood version 2.1.0
Fixes
- use
robin_hood::pair
instead ofstd::pair
to determine flat_map/node_map - add missing include '<type_traits>`
New Features
- add
is_flat_map
accessor
Misc
- code cleanup, more tests: less duplicated code
robin_hood version 1.0.0
First release of robin_hood that should be feature complete and relatively stable.
Unit tests work in 64bit & 32bit with g++, clang++ in Linux, and MSVC2017 in Windows.