blob: 6a4b5a890f195c517281b5b2d8787b2c146512d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
.. _vf2:
*************
VF2 Algorithm
*************
.. automodule:: networkx.algorithms.isomorphism.isomorphvf2
Graph Matcher
-------------
.. currentmodule:: networkx.algorithms.isomorphism
.. autosummary::
:toctree: generated/
GraphMatcher.__init__
GraphMatcher.initialize
GraphMatcher.is_isomorphic
GraphMatcher.subgraph_is_isomorphic
GraphMatcher.isomorphisms_iter
GraphMatcher.subgraph_isomorphisms_iter
GraphMatcher.candidate_pairs_iter
GraphMatcher.match
GraphMatcher.semantic_feasibility
GraphMatcher.syntactic_feasibility
DiGraph Matcher
---------------
.. currentmodule:: networkx.algorithms.isomorphism
.. autosummary::
:toctree: generated/
DiGraphMatcher.__init__
DiGraphMatcher.initialize
DiGraphMatcher.is_isomorphic
DiGraphMatcher.subgraph_is_isomorphic
DiGraphMatcher.isomorphisms_iter
DiGraphMatcher.subgraph_isomorphisms_iter
DiGraphMatcher.candidate_pairs_iter
DiGraphMatcher.match
DiGraphMatcher.semantic_feasibility
DiGraphMatcher.syntactic_feasibility
Match helpers
-------------
.. currentmodule:: networkx.algorithms.isomorphism
.. autosummary::
:toctree: generated/
categorical_node_match
categorical_edge_match
categorical_multiedge_match
numerical_node_match
numerical_edge_match
numerical_multiedge_match
generic_node_match
generic_edge_match
generic_multiedge_match
|