Uses of Interface
org.jgrapht.experimental.isomorphism.GraphIsomorphismInspector

Packages that use GraphIsomorphismInspector
org.jgrapht.experimental.isomorphism Algorithms which provide isomorphism check between two graphs. 
 

Uses of GraphIsomorphismInspector in org.jgrapht.experimental.isomorphism
 

Methods in org.jgrapht.experimental.isomorphism that return GraphIsomorphismInspector
protected static
<V,E> GraphIsomorphismInspector
AdaptiveIsomorphismInspectorFactory.createAppropriateConcreteInspector(int graphType, Graph<V,E> graph1, Graph<V,E> graph2, EquivalenceComparator<V,Graph<V,E>> vertexChecker, EquivalenceComparator<E,Graph<V,E>> edgeChecker)
          Checks the graph type, and accordingly decides which type of concrete inspector class to create.
static
<V,E> GraphIsomorphismInspector
AdaptiveIsomorphismInspectorFactory.createIsomorphismInspector(Graph<V,E> graph1, Graph<V,E> graph2)
          Creates a new inspector, letting this class determine what is the most efficient algorithm and using default equivalence comparators.
static
<V,E> GraphIsomorphismInspector
AdaptiveIsomorphismInspectorFactory.createIsomorphismInspector(Graph<V,E> graph1, Graph<V,E> graph2, EquivalenceComparator<V,Graph<V,E>> vertexChecker, EquivalenceComparator<E,Graph<V,E>> edgeChecker)
          Creates a new inspector, letting this class determine what is the most efficient algorithm.
static
<V,E> GraphIsomorphismInspector
AdaptiveIsomorphismInspectorFactory.createIsomorphismInspectorByType(int type, Graph<V,E> graph1, Graph<V,E> graph2)
          Creates a new inspector for a particular graph type (planar / tree / other) using default equivalence comparators.
static
<V,E> GraphIsomorphismInspector
AdaptiveIsomorphismInspectorFactory.createIsomorphismInspectorByType(int type, Graph<V,E> graph1, Graph<V,E> graph2, EquivalenceComparator<V,Graph<V,E>> vertexChecker, EquivalenceComparator<E,Graph<V,E>> edgeChecker)
          Creates a new inspector for a particular graph type (planar / tree / other).
protected static
<V,E> GraphIsomorphismInspector
AdaptiveIsomorphismInspectorFactory.createTopologicalExhaustiveInspector(Graph<V,E> graph1, Graph<V,E> graph2, EquivalenceComparator<V,Graph<V,E>> vertexChecker, EquivalenceComparator<E,Graph<V,E>> edgeChecker)
           
 



Copyright © 2013. All rights reserved.