Class IsomorphismTesterAbstract
- java.lang.Object
-
- com.jgalgo.alg.isomorphism.IsomorphismTesterAbstract
-
- All Implemented Interfaces:
IsomorphismTester
- Direct Known Subclasses:
IsomorphismTesterVf2
public abstract class IsomorphismTesterAbstract extends Object implements IsomorphismTester
Abstract class for computing isomorphism mapping between two graphs.The class implements the interface by solving the problem on the index graph and then maps the results back to the original graph. The implementation for index graphs is abstract and left to the subclasses.
- Author:
- Barak Ugav
-
-
Constructor Summary
Constructors Constructor Description IsomorphismTesterAbstract()
Default constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <V1,E1,V2,E2>
Iterator<IsomorphismMapping<V1,E1,V2,E2>>isomorphicMappingsIter(Graph<V1,E1> g1, Graph<V2,E2> g2, boolean induced, BiPredicate<? super V1,? super V2> vertexMatcher, BiPredicate<? super E1,? super E2> edgeMatcher)
Get an iterator over all the sub graph isomorphism mappings between two graphs, optionally induced, with vertex and/or edge matchers.-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.jgalgo.alg.isomorphism.IsomorphismTester
isomorphicMapping, isomorphicMapping, isomorphicMappingsIter, isomorphicMappingsIter
-
-
-
-
Method Detail
-
isomorphicMappingsIter
public <V1,E1,V2,E2> Iterator<IsomorphismMapping<V1,E1,V2,E2>> isomorphicMappingsIter(Graph<V1,E1> g1, Graph<V2,E2> g2, boolean induced, BiPredicate<? super V1,? super V2> vertexMatcher, BiPredicate<? super E1,? super E2> edgeMatcher)
Description copied from interface:IsomorphismTester
Get an iterator over all the sub graph isomorphism mappings between two graphs, optionally induced, with vertex and/or edge matchers.Given two graphs G1=(V1,E1) and G2=(V2,E2), a subgraph isomorphism is an injective function m:V1→V2 such that if (u,v)∈E1 than (m(u),m(v))∈E2. In the case of a directed graph, the function must preserve the direction of the edges. An induced subgraph isomorphism is same as above, but the mapping also satisfies (u,v)∈E1 if and only if (m(u),m(v))∈E2. The first graph G1 is the smaller graph, and the second graph G2 is the bigger graph, namely there is a sub graph of
g2
that is isomorphic tog1
. Note that subgraph isomorphism can only exists between graphs G1 and G2 if |V1|≤|V2| and |E1|≤|E2|. There may be vertices of G2 that are not mapped to any vertex of G1, and if non-induced sub graph isomorphism is searched, also edges of G2 that are not mapped to any edge of G1 (even if they are connecting mapped vertices of G2). In such case the inverse of the returned mappings may not map all vertices and edges ofg2
, seeIsomorphismMapping
.In addition to the structure of the graphs, this method also takes two predicates that filter pairs of vertices and edges, one from each graph, that are not allowed to be mapped to each other. For a given pair v1,v2 where v1∈V1 and v2∈V2, if the vertex matcher returns
false
, then the pair is not considered for mapping. The edge matchers is used similarly. If a matcher isnull
, all pairs of vertices or edges are allowed. The matchers allow to compare other properties of the vertices/edge besides their structure, such as weights.Note that the type of vertices and edges of the two graphs may be different. Only the structure of the graphs is considered, along with the matchers, if provided.
If both
g1
andg2
are instances ofIntGraph
, the returned iterator will iterate over objects ofIsomorphismIMapping
.- Specified by:
isomorphicMappingsIter
in interfaceIsomorphismTester
- Type Parameters:
V1
- the type of vertices of the first graphE1
- the type of edges of the first graphV2
- the type of vertices of the second graphE2
- the type of edges of the second graph- Parameters:
g1
- the first graph. If sub graph isomorphism is searched,g1
is the smaller graph, namely the method search for a mapping fromg1
to a sub graph ofg2
g2
- the second graph. If sub graph isomorphism is searched,g2
is the bigger graph, namely the method search for a mapping fromg1
to a sub graph ofg2
induced
- whether to search for an induced sub graph isomorphism or a sub graph isomorphism. See the interface documentation for more detailsvertexMatcher
- a predicate that filters pairs of vertices, one from each graph, that are not allowed to be mapped to each other. For a given pair v1,v2 where v1∈V1 and v2∈V2, if the matcher returnsfalse
, then the pair is not considered for mapping. Ifnull
, all pairs of vertices are allowed.edgeMatcher
- a predicate that filters pairs of edges, one from each graph, that are not allowed to be mapped to each other. For a given pair e1,e2 where e1∈E1 and e2∈E2, if the matcher returnsfalse
, then the pair is not considered for mapping. Ifnull
, all pairs of edges are allowed.- Returns:
- an iterator over all the (optionally induced) sub graph isomorphism mappings
between the two graphs. The returned mappings maps vertices and edges from the
first graph to vertices and edges of the second graph. The inverse mapping can
be obtained by calling
IsomorphismMapping.inverse()
.
-
-