From 038f8e7e80dada03b5a6c21d40894385b1f2aa1d Mon Sep 17 00:00:00 2001 From: x Date: Wed, 19 Apr 2023 09:57:44 +0200 Subject: [PATCH] Inverted Index: Query Processing --- lib/idxqry.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/idxqry.c b/lib/idxqry.c index 767619c..cb08d85 100644 --- a/lib/idxqry.c +++ b/lib/idxqry.c @@ -46,11 +46,9 @@ #endif #include +#include "../include/ic.h" #include "include_/conf.h" -#include "include_/bitpack.h" -#include "include_/vp4.h" - -#include "include_/vint_.h" +#include "include_/vlcbyte.h" #include "idx.h" #ifndef min #define min(x,y) (((x)<(y)) ? (x) : (y))