com.venky.clustering.CenterFinder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
Commonly used programming tasks in java
package com.venky.clustering;
import java.util.Collection;
public interface CenterFinder {
public T center(Collection points);
public T center(T oldCenter, int numOldPoints, T newPoint);
}