Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 796 Bytes

IsomorphicHypergraphQ.md

File metadata and controls

23 lines (19 loc) · 796 Bytes
Symbols and Functions > Utility Functions >

IsomorphicHypergraphQ

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