aboutsummaryrefslogtreecommitdiff
path: root/bitmapped_patricia_tree.c
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2011-12-07 20:27:10 +0100
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2011-12-07 20:27:10 +0100
commitc2f77d08fb15feb5f0f5826c55fa525f3659d986 (patch)
treea2a0a86b4e845fa3e729e604b4a62cc9ec054ff3 /bitmapped_patricia_tree.c
parent70399f1c8cae6e9ddd43cd28ecdaf17c96274c65 (diff)
Add the option of configuring the BPT key and bitmask sizes.
Diffstat (limited to 'bitmapped_patricia_tree.c')
-rw-r--r--bitmapped_patricia_tree.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitmapped_patricia_tree.c b/bitmapped_patricia_tree.c
index 79ac076..543ffb8 100644
--- a/bitmapped_patricia_tree.c
+++ b/bitmapped_patricia_tree.c
@@ -49,12 +49,13 @@
#include "bitmapped_patricia_tree.h"
+#ifndef BPT_EXPLICIT_CONFIGURATION
#define CHUNK_LENGTH 5
#define KEY_LENGTH 32
#define OFFSET_MASK 0x1ffff //((1 << chunk_length) - 1)
#define MAX_CHUNKS 7 //key_length / chunk_length + ((key_length % chunk_length == 0) ? 0 : 1)
#define LAST_CHUNK_LENGTH 2 //key_length - ((max_chunks - 1) * chunk_length)
-
+#endif //!BPT_EXPLICIT_CONFIGURATION
typedef struct bpt_nonempty *bpt_nonempty_t;
typedef struct bpt_node *bpt_node_t;