Initialize GraphMatcher.
Parameters: | G1,G2: NetworkX Graph or MultiGraph instances. :
|
---|
Examples
To create a GraphMatcher which checks for syntactic feasibility:
>>> G1 = nx.path_graph(4)
>>> G2 = nx.path_graph(4)
>>> GM = nx.GraphMatcher(G1,G2)