maxitg / SetReplace

C++/Wolfram Language package for exploring set and graph rewriting systems
MIT License
219 stars 45 forks source link

Adding Hypergraph object #664

Open daneelsan opened 3 years ago

daneelsan commented 3 years ago

Changes

Comments

ToDo

Examples

hg = Hypergraph[{{}, {}, {1, 2, 3}}];

In[]:= EdgeList[hg]
Out[]= {{}, {}, {1, 2, 3}}

In[]:= VertexList[hg]
Out[]= {1, 2, 3}

In[]:= HypergraphSymmetry[hg]
Out[]= "Ordered"

This change is Reviewable