Symbols and Functions > Utility Functions >
IsomorphicHypergraphQ
is the natural extension
of IsomorphicGraphQ
for hypergraphs. It
yields True
for isomorphic (ordered) hypergraphs,
and False
otherwise:
In[]:= IsomorphicHypergraphQ[
{{a, e, d}, {d, c}, {c, b}, {b, a}},
{{2, 4}, {4, 5, 1}, {1, 3}, {3, 2}}]
Out[]= True
In[]:= IsomorphicHypergraphQ[
{{a, e, d}, {d, c}, {c, b}, {b, a}},
{{2, 4}, {4, 3, 1}, {1, 3}, {5, 2}}]
Out[]= False