tries module: undo last change on macro MAX_NODES_PER_TRIE_LEVEL

This commit is contained in:
Ricardo Rocha 2010-03-31 18:39:38 +01:00
parent 7b49c14edd
commit 6cb0886587
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ typedef struct trie_hash {
#define TrieVarIndex(TERM) ((TERM) >> 4)
#define BASE_HASH_BUCKETS 64
#define MAX_NODES_PER_TRIE_LEVEL 2
#define MAX_NODES_PER_TRIE_LEVEL 8
#define MAX_NODES_PER_BUCKET (MAX_NODES_PER_TRIE_LEVEL / 2)
#define HASH_TERM(TERM, SEED) (((TERM) >> 4) & (SEED))
#define IS_HASH_NODE(NODE) (TrHash_mark(NODE) == NULL)