Package org.nlpub.watset.graph
Class MaxMax<V,E>
- java.lang.Object
-
- org.nlpub.watset.graph.MaxMax<V,E>
-
- Type Parameters:
V- the type of nodes in the graphE- the type of edges in the graph
- All Implemented Interfaces:
org.jgrapht.alg.interfaces.ClusteringAlgorithm<V>
public class MaxMax<V,E> extends Object implements org.jgrapht.alg.interfaces.ClusteringAlgorithm<V>
Implementation of the MaxMax soft clustering algorithm.- See Also:
- Hope & Keller (CICLing 2013)
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMaxMax.Builder<V,E>Builder forMaxMax.protected static classMaxMax.Implementation<V,E>Actual implementation of MaxMax.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static <V,E>
MaxMax.Builder<V,E>builder()Create a builder.MaxMaxClustering<V>getClustering()
-
-
-
Method Detail
-
builder
public static <V,E> MaxMax.Builder<V,E> builder()
Create a builder.- Type Parameters:
V- the type of nodes in the graphE- the type of edges in the graph- Returns:
- a builder
-
getClustering
public MaxMaxClustering<V> getClustering()
- Specified by:
getClusteringin interfaceorg.jgrapht.alg.interfaces.ClusteringAlgorithm<V>
-
-