-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add StarDigraph #424
Add StarDigraph #424
Conversation
Also the star graph S_n is isomorphic to the complete bipartite graph K_{1, n - 1}, which already exists in the package as |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the code is fine, I had one or two comments on the documentation (some just echoing what Alex said).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for those changes @LRacine! I've going to make a few more suggestion (mostly technical things) which I'll commit through the GitHub interface, and then I'll merge if it all seems okay!
@@ -87,6 +87,7 @@ | |||
<#Include Label="JohnsonDigraph"> | |||
<#Include Label="PetersenGraph"> | |||
<#Include Label="GeneralisedPetersenGraph"> | |||
<#Include Label="StarDigraph"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah I see, thank you!!
This creates a star graph as defined by https://en.wikipedia.org/wiki/Star_(graph_theory).