mirror of https://github.com/apache/lucene.git
LUCENE-7496: Better toString for SweetSpotSimilarity
This commit is contained in:
parent
14b6d93db4
commit
c4b4830ac1
|
@ -109,6 +109,8 @@ Improvements
|
|||
* LUCENE-7439: FuzzyQuery now matches all terms within the specified
|
||||
edit distance, even if they are short terms (Mike McCandless)
|
||||
|
||||
* LUCENE-7496: Better toString for SweetSpotSimilarity (janhoy)
|
||||
|
||||
Optimizations
|
||||
|
||||
* LUCENE-7501: BKDReader should not store the split dimension explicitly in the
|
||||
|
|
|
@ -223,4 +223,20 @@ public class SweetSpotSimilarity extends ClassicSimilarity {
|
|||
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append("SweetSpotSimilarity")
|
||||
.append("(")
|
||||
.append("ln_min="+ln_min+", ")
|
||||
.append("ln_max=").append(ln_max).append(", ")
|
||||
.append("ln_steep=").append(ln_steep).append(", ")
|
||||
.append("tf_base=").append(tf_base).append(", ")
|
||||
.append("tf_min=").append(tf_min).append(", ")
|
||||
.append("tf_hyper_min=").append(tf_hyper_min).append(", ")
|
||||
.append("tf_hyper_max=").append(tf_hyper_max).append(", ")
|
||||
.append("tf_hyper_base=").append(tf_hyper_base).append(", ")
|
||||
.append("tf_hyper_xoffset=").append(tf_hyper_xoffset)
|
||||
.append(")");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue