untested (and no possible retrieval) of CRC used to represent data in

AVL trees
This commit is contained in:
Celine Mercier
2016-03-24 16:38:11 +01:00
parent 58ac860cc7
commit 69856f18dd
5 changed files with 252 additions and 17 deletions

View File

@ -24,10 +24,10 @@
#include "obidms.h"
#include "obitypes.h"
#include "bloom.h"
#define NODE_COUNT_PER_AVL (2000000)
#define NODE_COUNT_PER_AVL (10000000)
#define BLOOM_FILTER_ERROR_RATE (0.001)
@ -59,6 +59,7 @@ typedef struct AVL_node {
*/
index_t value; /**< Index of the value associated with the node in the data array.
*/
uint64_t crc64; // TODO
} AVL_node_t, *AVL_node_p;