edu.uci.ics.jung.algorithms.blockmodel
Interface EquivalenceAlgorithm<V,E>


public interface EquivalenceAlgorithm<V,E>

Any blockmodel equivalence algorithm should implement this method; it allows users to access EquivalenceAlgorithms more easily.

Since:
1.3.0
Author:
danyelf, Tom Nelson - converted to jung2

Method Summary
 EquivalenceRelation<V,E> getEquivalences(Graph<V,E> g)
          Runs the equivalence algorithm on the given graph, and returns an equivalence relation.
 

Method Detail

getEquivalences

EquivalenceRelation<V,E> getEquivalences(Graph<V,E> g)
Runs the equivalence algorithm on the given graph, and returns an equivalence relation.

Parameters:
g - the graph to be checked for equivalence
Returns:
an EquivalenceRelation


Copyright © 2007. All Rights Reserved.