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

@@ -484,13 +484,6 @@ void bdz_ph_load(FILE *f, cmph_t *mphf)
bdz_ph->g = (cmph_uint8 *)calloc((size_t)sizeg, sizeof(cmph_uint8));
nbytes = fread(bdz_ph->g, sizeg*sizeof(cmph_uint8), (size_t)1, f);
/* #ifdef DEBUG
cmph_uint32 i;
fprintf(stderr, "G: ");
for (i = 0; i < bdz_ph->n; ++i) fprintf(stderr, "%u ", GETVALUE(bdz_ph->g,i));
fprintf(stderr, "\n");
#endif
*/
return;
}