Multiple AVLs with bloom filters (very raw test version)

This commit is contained in:
Celine Mercier
2016-03-18 11:06:02 +01:00
parent 545ed8111a
commit 3681cecb4d
12 changed files with 677 additions and 223 deletions

View File

@ -61,13 +61,13 @@ int obi_column_set_obiseq_with_elt_idx(OBIDMS_column_p column, index_t line_nb,
if (value_b == NULL)
return -1;
if (strlen(value_b) == 0)
fprintf(stderr, "\nPOUIC");
//if (strlen(value_b) == 0)
// fprintf(stderr, "\nPOUIC");
//fprintf(stderr, "\n>%s||%s", value, obi_obibytes_to_seq(value_b));
// Add in the AVL tree
idx = obi_avl_add((column->avl)[compute_crc(value)], value_b);
idx = insert_in_avl_group(column->avl, value_b);
if (idx == -1)
return -1;