View Javadoc

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