Package org.nlpub.watset.graph
Class MarkovClustering<V,E>
java.lang.Object
org.nlpub.watset.graph.MarkovClustering<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 MarkovClustering<V,E>
extends Object
implements org.jgrapht.alg.interfaces.ClusteringAlgorithm<V>
Naïve implementation of the Markov Clustering (MCL) algorithm.
This implementation assumes processing of relatively small graphs due to the lack of pruning optimizations.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Builder forMarkovClustering
.protected static class
Actual implementation of Markov Clustering. -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected org.jgrapht.alg.interfaces.ClusteringAlgorithm.Clustering<V>
The cached clustering result.protected final int
The expansion parameter.The graph.protected final int
The maximal number of iterations.protected final double
The inflation parameter. -
Constructor Summary
ConstructorsConstructorDescriptionMarkovClustering
(org.jgrapht.Graph<V, E> graph, int e, double r, int iterations) Create an instance of the Markov Clustering algorithm. -
Method Summary
Modifier and TypeMethodDescriptionstatic <V,
E> MarkovClustering.Builder<V, E> builder()
Create a builder.org.jgrapht.alg.interfaces.ClusteringAlgorithm.Clustering<V>
-
Field Details
-
graph
The graph. -
e
protected final int eThe expansion parameter. -
r
protected final double rThe inflation parameter. -
iterations
protected final int iterationsThe maximal number of iterations. -
clustering
The cached clustering result.
-
-
Constructor Details
-
MarkovClustering
Create an instance of the Markov Clustering algorithm.- Parameters:
graph
- the graphe
- the expansion parameterr
- the inflation parameteriterations
- the maximal number of iterations
-
-
Method Details
-
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
- Specified by:
getClustering
in interfaceorg.jgrapht.alg.interfaces.ClusteringAlgorithm<V>
-