untested (and no possible retrieval) of CRC used to represent data in
AVL trees
This commit is contained in:
@ -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;
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user