public interface IsomorphismTester
Modifier and Type | Method and Description |
---|---|
boolean |
areIsomorphic(Graph<? extends Edge> g1,
Graph<? extends Edge> g2)
Returns
true if the graphs are isomorphism of each other. |
Map<Integer,Integer> |
findIsomorphism(Graph<? extends Edge> g1,
Graph<? extends Edge> g2)
Returns an isomorphic mapping from the vertices in
g1 to the
vertices in g2 , or an empty Map if no such mapping
exists. |
Copyright © 2012. All Rights Reserved.