summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-03-22 15:07:31 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2025-03-22 15:07:31 +0200
commit8946fa4b77fef3002d78bb1c5a19cc05c97a71c3 (patch)
tree0d57ee30a8300df85913887c19d2e75da619f3dc /tests
parente0e4da87f21f79376ea37e90db60aae8d7e9f010 (diff)
downloadconts-8946fa4b77fef3002d78bb1c5a19cc05c97a71c3.tar.gz
conts-8946fa4b77fef3002d78bb1c5a19cc05c97a71c3.zip
make map faster
Diffstat (limited to 'tests')
-rw-r--r--tests/map.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/map.c b/tests/map.c
index e9362ab..08f831e 100644
--- a/tests/map.c
+++ b/tests/map.c
@@ -3,13 +3,16 @@
#define MAP_KEY int
#define MAP_TYPE int
+#define MAP_HASH(a) CONTS_MAP_NO_HASH(a)
#define MAP_CMP(a, b) ((a) - (b))
#define MAP_NAME ints
#include <conts/map.h>
int main()
{
- struct ints ints = ints_create();
+ /* heuristic, but if we know how many elements we'll need, we should
+ * give it to the create function. */
+ struct ints ints = ints_create(0);
for (int i = 0; i < 1000000; ++i) {
ints_insert(&ints, i, i);
}