From b8ae27e8b147fbe400fe6d1754d5ce8ccd2cf97f Mon Sep 17 00:00:00 2001 From: x Date: Fri, 10 Mar 2023 20:28:32 +0100 Subject: [PATCH] Inverted Index: Partioning/Sharding App --- idxseg.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/idxseg.c b/idxseg.c index 85c0682..8084887 100644 --- a/idxseg.c +++ b/idxseg.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 @@ -34,7 +34,7 @@ #endif #include -#include "conf.h" +#include "include_/conf.h" #ifndef min #define min(x,y) (((x)<(y)) ? (x) : (y)) @@ -55,7 +55,7 @@ unsigned argtoi(char *s) { } 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, "Partitioning\n"); fprintf(stderr, "Usage: idxseg -nNs -sPs \n"); fprintf(stderr, "Ns=total number of documents. Ps=number of partitions\n");