TooBiased / growt

This is a header only library offering a variety of dynamically growing concurrent hash tables. That all work by dynamically migrating the current table once it gets too full.
Other
106 stars 13 forks source link

TBB is a Prerequisite to include table_config.hpp #7

Closed xanderdunn closed 2 years ago

xanderdunn commented 3 years ago

The README indicates that grow can be used all on its own without any third part libraries. However, data-structures/table_config.hpp includes data-structures/element_types/complex_slot.hpp, which includes tbb/scalable_allocator.h. TBB must be installed to use growt's hash map.

TooBiased commented 2 years ago

Done. The default allocator is now std::allocator. TBB can be reactivated via #define TBB_AS_DEFAULT.