All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.venky.clustering.euclidean.EuclideanCenterFinderBuilder Maven / Gradle / Ivy

package com.venky.clustering.euclidean;

import com.venky.clustering.CenterFinder;
import com.venky.clustering.CenterFinderBuilder;
import com.venky.clustering.Cluster;

public class EuclideanCenterFinderBuilder implements CenterFinderBuilder {

	@Override
	public CenterFinder build(Cluster cluster) {
		return new EuclideanCenterFinder(cluster);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy