#include <cassert>
#include <cstdio>
#include "util.h"
#include "BasicIndex.hpp"
#include "Array.hpp"
#include "BasicDocStream.hpp"
#include "FastList.hpp"
#include "GammaCompress.hpp"
#include "ISet.hpp"
#include "IndexCount.hpp"
#include "Int.hpp"
#include "List.hpp"
#include "MemList.hpp"
#include "Param.hpp"
#include "String.hpp"
#include "Terms.hpp"
#include "Timer.hpp"
#include "BasicTermInfoList.hpp"
#include "BasicDocInfoList.hpp"
#include "Exception.hpp"
#include "FUtil.hpp"
Defines | |
#define | MAXLINE 65536 |
#define | MAXINDEX 1024 |
#define | MIN(a,b) (a<=b) ? a : b |
#define | MAX(a,b) (a<=b) ? b : a |
Variables | |
const int | maxDocSize = 5000 |
const char* | wordIndexSuffix = "windex" |
const char* | documentIndexSuffix = "dindex" |
const char* | wordVocSuffix = "terms" |
const char* | documentVocSuffix = "docids" |
const char* | wordKeySuffix = "wkey" |
const char* | documentKeySuffix = "dkey" |
const char* | indexFileSuffix = "bsc" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|