#include <map>
#include <set>
#include "InvFPTypes.hpp"
#include "TextHandler.hpp"
#include "Stopper.hpp"
Go to the source code of this file.
Compounds | |
class | FreqCounter |
struct | freqinfo_tt |
Internally used structure for storing term statistics. More... | |
Defines | |
#define | R_CTF 0 |
Specifies query terms selected proportional to collection term frequency. | |
#define | R_DF 1 |
Specifies query terms selected proportional to document frequency. | |
#define | R_AVE_TF 2 |
Specifies query terms selected proportional to average term frequency. | |
#define | R_UNIFORM 3 |
Specifies query terms selected with uniform probability. | |
Typedefs | |
typedef freqinfo_tt | freqinfo_t |
Internally used structure for storing term statistics. | |
typedef map< char *, freqinfo_t, ltstr > | freqmap |
A map from words to frequency information. | |
typedef set< char *, ltstr > | stringset |
A set of words. |
|
Specifies query terms selected proportional to average term frequency.
|
|
Specifies query terms selected proportional to collection term frequency.
|
|
Specifies query terms selected proportional to document frequency.
|
|
Specifies query terms selected with uniform probability.
|
|
Internally used structure for storing term statistics.
|
|
A map from words to frequency information.
|
|
A set of words.
|