1 package baseCode.algorithm.learning.unsupervised.cluster;
2
3 import baseCode.common.Distanceable;
4
5 /***
6 * <hr>
7 * <p>
8 * Copyright (c) 2004 Columbia University
9 *
10 * @author pavlidis
11 * @version $Id: Distancer.java,v 1.2 2004/08/02 15:03:43 pavlidis Exp $
12 */
13 public interface Distancer {
14
15 /***
16 * @param a
17 * @param b
18 * @return
19 */
20 public double distance( Distanceable a, Distanceable b );
21
22 }