From 27bc538572c978298349bb017777df9c9c6a8b67 Mon Sep 17 00:00:00 2001 From: x Date: Fri, 10 Mar 2023 20:28:32 +0100 Subject: [PATCH] Inverted Index: Query Processing --- idxqry.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/idxqry.c b/idxqry.c index 424756c..d5f2824 100644 --- a/idxqry.c +++ b/idxqry.c @@ -1,5 +1,5 @@ /** - Copyright (C) powturbo 2013-2019 + Copyright (C) powturbo 2013-2023 GPL v2 License This program is free software; you can redistribute it and/or modify @@ -46,11 +46,11 @@ #endif #include -#include "conf.h" -#define VINT_IN -#include "vint.h" -#include "bitpack.h" -#include "vp4.h" +#include "include_/conf.h" +#include "include_/bitpack.h" +#include "include_/vp4.h" + +#include "include_/vint_.h" #include "idx.h" #ifndef min #define min(x,y) (((x)<(y)) ? (x) : (y)) @@ -548,7 +548,7 @@ int qrybatch(idxrd_t *idx, char *fqname } void usage() { - fprintf(stderr, "\nTurboPFor Copyright (c) 2013-2019 Powturbo %s\n", __DATE__); + fprintf(stderr, "\nTurboPFor Copyright (c) 2013-2023 Powturbo %s\n", __DATE__); fprintf(stderr, "https://github.com/powturbo/TurboPFor\n\n"); #ifdef THREAD_MAX fprintf(stderr, "Benchmark: parallel intersections in compressed inverted index\n\n");