Home | History | Annotate | Download | only in clustering

Lines Matching refs:Cluster

25  * Cluster holding a set of {@link Clusterable} points.
30 public class Cluster<T extends Clusterable<T>> implements Serializable {
35 /** The points contained in this cluster. */
38 /** Center of the cluster. */
42 * Build a cluster centered at a specified point.
43 * @param center the point which is to be the center of this cluster
45 public Cluster(final T center) {
51 * Add a point to this cluster.
59 * Get the points contained in the cluster.
60 * @return points contained in the cluster
67 * Get the point chosen to be the center of this cluster.
68 * @return chosen cluster center