View Javadoc

1   package baseCode.algorithm.learning.unsupervised.cluster;
2   
3   /***
4    * <hr>
5    * <p>
6    * Copyright (c) 2004 Columbia University
7    * 
8    * @author pavlidis
9    * @version $Id: Similarity.java,v 1.1 2004/07/27 03:18:58 pavlidis Exp $
10   */
11  public interface Similarity {
12  
13     public double similarity();
14  
15  }
16