// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once /// /// Default capacity for the dictionaries (amount of space for the elements) /// #define DICTIONARY_DEFAULT_CAPACITY 256 /// /// Function for dictionary that tells how change hash index during iteration (size param is a buckets table size) /// #define DICTIONARY_PROB_FUNC(size, numChecks) (numChecks) //#define DICTIONARY_PROB_FUNC(size, numChecks) (1)