1
Fork 0

Fixed r value initialization bdz and bdz_ph.

This commit is contained in:
davi 2009-06-08 02:36:54 -03:00
parent 48bc719728
commit f8d086f454
2 changed files with 4 additions and 2 deletions

View File

@ -280,6 +280,7 @@ cmph_t *bdz_new(cmph_config_t *mph, double c)
DEBUGP("c: %f\n", c);
bdz->m = mph->key_source->nkeys;
bdz->r = ceil((c * mph->key_source->nkeys)/3);
if ((bdz->r % 2) == 0) bdz->r+=1;
bdz->n = 3*bdz->r;
bdz->k = (1 << bdz->b);

View File

@ -1,4 +1,4 @@
#include "bdz_ph.h"
#include "bdz_ph.h"
#include "cmph_structs.h"
#include "bdz_structs_ph.h"
#include "hash.h"
@ -253,6 +253,7 @@ cmph_t *bdz_ph_new(cmph_config_t *mph, double c)
DEBUGP("c: %f\n", c);
bdz_ph->m = mph->key_source->nkeys;
bdz_ph->r = ceil((c * mph->key_source->nkeys)/3);
if ((bdz_ph->r % 2) == 0) bdz_ph->r += 1;
bdz_ph->n = 3*bdz_ph->r;