LUCENE-7496: Better toString for SweetSpotSimilarity

This commit is contained in:
Jan Høydahl 2016-10-20 14:07:11 +02:00
parent 14b6d93db4
commit c4b4830ac1
2 changed files with 18 additions and 0 deletions

View File

@ -109,6 +109,8 @@ Improvements
* LUCENE-7439: FuzzyQuery now matches all terms within the specified * LUCENE-7439: FuzzyQuery now matches all terms within the specified
edit distance, even if they are short terms (Mike McCandless) edit distance, even if they are short terms (Mike McCandless)
* LUCENE-7496: Better toString for SweetSpotSimilarity (janhoy)
Optimizations Optimizations
* LUCENE-7501: BKDReader should not store the split dimension explicitly in the * LUCENE-7501: BKDReader should not store the split dimension explicitly in the

View File

@ -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();
}
} }