Coverage Report - org.galagosearch.core.scoring.DistributionSmoother
 
Classes in this File Line Coverage Branch Coverage Complexity
DistributionSmoother
N/A
N/A
1
 
 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  
 }