Searched defs:curThr (Results 1 - 2 of 2) sorted by relevance

/lucene-3.6.0/lucene/contrib/pruning/src/java/org/apache/lucene/index/pruning/
H A DTFTermPruningPolicy.java47 protected int curThr; field in class:TFTermPruningPolicy
85 curThr = defThreshold;
88 curThr = thresholds.get(termKey);
90 curThr = thresholds.get(t.field());
97 if (termPositions.freq() < curThr) {
H A DCarmelUniformTermPruningPolicy.java83 float curThr; field in class:CarmelUniformTermPruningPolicy
117 curThr = defThreshold;
120 curThr = thresholds.get(termKey);
122 curThr = thresholds.get(t.field());
126 int count = Math.round((float) df * curThr);

Completed in 216 milliseconds