ClusterType - type of Cluster<DataType> used in the
learn() methodDataType - The algorithm operates on a Collection<DataType>,
so DataType will be something like Vector or String@CodeReview(reviewer="Kevin R. Dixon", date="2008-07-23", changesNeeded=false, comments="Looks fine.") public abstract class AbstractClusterToClusterDivergenceFunction<ClusterType extends Cluster<DataType>,DataType> extends DefaultDivergenceFunctionContainer<DataType,DataType> implements ClusterToClusterDivergenceFunction<ClusterType,DataType>
divergenceFunction| Constructor and Description |
|---|
AbstractClusterToClusterDivergenceFunction(DivergenceFunction<? super DataType,? super DataType> divergenceFunction)
Creates a new instance of AbstractClusterToClusterDivergenceFunction
|
clone, getDivergenceFunction, setDivergenceFunctionequals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitevaluatepublic AbstractClusterToClusterDivergenceFunction(DivergenceFunction<? super DataType,? super DataType> divergenceFunction)
divergenceFunction - The divergence function to use between
elements.