1 package types; 2 3 public interface FeatureFunction { 4 5 public SparseVector apply(SparseVector x, int y); 6 7 public int wSize(); 8 9 }