From 272abf8430ab0e6e1ff29896d69784f15958d827 Mon Sep 17 00:00:00 2001 From: erdgeist <> Date: Mon, 3 Nov 2008 01:52:51 +0000 Subject: Try to use much less memory and hope for speedups --- ot_vector.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ot_vector.h b/ot_vector.h index 32ec26a..1d42dd0 100644 --- a/ot_vector.h +++ b/ot_vector.h @@ -7,10 +7,10 @@ #define __OT_VECTOR_H__ /* These defines control vectors behaviour */ -#define OT_VECTOR_MIN_MEMBERS 4 -#define OT_VECTOR_GROW_RATIO 8 -#define OT_VECTOR_SHRINK_THRESH 6 -#define OT_VECTOR_SHRINK_RATIO 4 +#define OT_VECTOR_MIN_MEMBERS 2 +#define OT_VECTOR_GROW_RATIO 2 +#define OT_VECTOR_SHRINK_THRESH 4 +#define OT_VECTOR_SHRINK_RATIO 2 typedef struct { void *data; -- cgit v1.2.3