|
|||||||||||||||||||
| 30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| DistanceFactory.java | - | - | - | - |
|
||||||||||||||
| 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 |
} |
|
| 15 |
|
|
||||||||||