From: bdemsky Date: Thu, 29 Mar 2018 20:42:07 +0000 (-0700) Subject: Change default hashtable size X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;ds=sidebyside;h=f818627d0fc1f3c106684c1daff1cb96edc087db;p=iotcloud.git Change default hashtable size --- diff --git a/version2/src/C/hashtable.h b/version2/src/C/hashtable.h index 868060c..6107e33 100644 --- a/version2/src/C/hashtable.h +++ b/version2/src/C/hashtable.h @@ -70,7 +70,7 @@ public: * @param factor Sets the percentage full before the hashtable is * resized. Default ratio 0.5. */ - Hashtable(unsigned int initialcapacity = 1024, double factor = 0.5) { + Hashtable(unsigned int initialcapacity = 32, double factor = 0.5) { // Allocate space for the hash table table = (struct Hashlistnode<_Key, _Val> *)ourcalloc(initialcapacity, sizeof(struct Hashlistnode<_Key, _Val>)); zero = NULL;