1 // BSD License (http://www.galagosearch.org/license)
2 package org.galagosearch.core.scoring;
3
4 /***
5 *
6 * @author trevor
7 */
8 public interface DistributionSmoother {
9 public double smooth(String word, int count, int length);
10 public double smooth(double background, int count, int length);
11 }