Class MaxMax.Implementation<V,E>

java.lang.Object
org.nlpub.watset.graph.MaxMax.Implementation<V,E>
Type Parameters:
V - the type of nodes in the graph
E - the type of edges in the graph
Enclosing class:
MaxMax<V,E>

protected static class MaxMax.Implementation<V,E> extends Object
Actual implementation of MaxMax.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected final org.jgrapht.Graph<V,org.jgrapht.graph.DefaultEdge>
    The directed graph.
    protected final org.jgrapht.Graph<V,E>
    The graph.
    protected final Map<V,Double>
    The weights.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Implementation(org.jgrapht.Graph<V,E> graph)
    Create an instance of the MaxMax clustering algorithm implementation.
  • Method Summary

    Modifier and Type
    Method
    Description
    protected void
    Build the intermediate directed graph.
    Perform clustering with MaxMax.
    protected Map<V,Set<V>>
    Extract the quasi-strongly connected subgraphs from the intermediate directed graph.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • graph

      protected final org.jgrapht.Graph<V,E> graph
      The graph.
    • weights

      protected final Map<V,Double> weights
      The weights.
    • digraph

      protected final org.jgrapht.Graph<V,org.jgrapht.graph.DefaultEdge> digraph
      The directed graph.
  • Constructor Details

    • Implementation

      public Implementation(org.jgrapht.Graph<V,E> graph)
      Create an instance of the MaxMax clustering algorithm implementation.
      Parameters:
      graph - the graph
  • Method Details

    • compute

      public MaxMaxClustering<V> compute()
      Perform clustering with MaxMax.
      Returns:
      the clustering
    • buildArcs

      protected void buildArcs()
      Build the intermediate directed graph.
    • extractClusters

      protected Map<V,Set<V>> extractClusters()
      Extract the quasi-strongly connected subgraphs from the intermediate directed graph.
      Returns:
      the map of cluster roots to the clusters