| Package | Description |
|---|---|
| org.jgrapht.experimental.isomorphism |
Algorithms which provide isomorphism check between two graphs.
|
| Modifier and Type | Method and Description |
|---|---|
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 © 2015. All Rights Reserved.