Package org.nlpub.watset.graph
Class MarkovClusteringExternal.Implementation<V,E>
java.lang.Object
org.nlpub.watset.graph.MarkovClusteringExternal.Implementation<V,E>
- Type Parameters:
V
- the type of nodes in the graphE
- the type of edges in the graph
- Enclosing class:
- MarkovClusteringExternal<V,
E>
Actual implementation of the Markov Clustering wrapper.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe graph.protected final org.jgrapht.util.VertexToIntegerMapping<V>
The mapping of nodes to indices.protected File
The output file.protected final Path
The path to the MCL binary.protected final double
The inflation parameter.protected final int
The number of threads. -
Constructor Summary
ConstructorsConstructorDescriptionImplementation
(org.jgrapht.Graph<V, E> graph, Path path, double r, int threads) Create an instance of the Markov Clustering algorithm wrapper implementation. -
Method Summary
-
Field Details
-
graph
The graph. -
path
The path to the MCL binary. -
r
protected final double rThe inflation parameter. -
threads
protected final int threadsThe number of threads. -
mapping
The mapping of nodes to indices. -
output
The output file.
-
-
Constructor Details
-
Implementation
Create an instance of the Markov Clustering algorithm wrapper implementation.- Parameters:
graph
- the graphpath
- the path to the MCL binaryr
- the inflation parameterthreads
- the number of threads
-
-
Method Details
-
compute
Perform clustering with Markov Clustering.- Returns:
- the clustering
-
process
Run the Markov Clustering binary and read its output.- Throws:
IOException
- if an I/O error occurs
-
writeInputFile
Write the input file for the Markov Clustering binary.- Returns:
- the written input file for the Markov Clustering binary
- Throws:
IOException
- if an I/O error occurs
-