perf(hashing): Much faster hash algorithm

For compositions we have implimented a much faster hashing algorithm
This commit is contained in:
2025-12-07 09:41:58 -05:00
parent 3dc697dd6e
commit 184df676ca
9 changed files with 219 additions and 168 deletions

View File

@@ -18,7 +18,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# *********************************************************************** #
project('libcomposition', 'cpp', version: 'v2.2.5', default_options: ['cpp_std=c++23'], meson_version: '>=1.5.0')
project('libcomposition', 'cpp', version: 'v2.2.6', default_options: ['cpp_std=c++23'], meson_version: '>=1.5.0')
# Add default visibility for all C++ targets
add_project_arguments('-fvisibility=default', language: 'cpp')
@@ -39,6 +39,10 @@ if get_option('build_examples')
subdir('examples')
endif
if get_option('build_benchmarks')
subdir('benchmarks')
endif
if get_option('pkg_config')
message('Generating pkg-config file for libcomposition...')
pkg = import('pkgconfig')