
com.venky.clustering.euclidean.EuclideanCenterFinderBuilder 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
The newest version!
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 - 2025 Weber Informatics LLC | Privacy Policy