compressed hash and displace method added

This commit is contained in:
fc_botelho
2009-03-18 19:40:23 +00:00
parent e22a2db37d
commit 29535bbde4
13 changed files with 1096 additions and 36 deletions

View File

@@ -105,6 +105,10 @@ void brz_config_set_mphf_fd(cmph_config_t *mph, FILE *mphf_fd)
void brz_config_set_b(cmph_config_t *mph, cmph_uint32 b)
{
brz_config_data_t *brz = (brz_config_data_t *)mph->data;
if(b <= 64 || b >= 175)
{
b = 128;
}
brz->b = b;
}