-
Notifications
You must be signed in to change notification settings - Fork 36
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
Cayley digraphs #348
Cayley digraphs #348
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -391,8 +391,6 @@ function(S) | |
|
||
l := LeftCayleyGraphSemigroup(S); | ||
r := RightCayleyGraphSemigroup(S); | ||
# WW: in the future, when l and r are digraphs, gr can be created | ||
# by using DigraphEdgeUnion(l, r) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is there a reason why you didn't implement this suggestion? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, because there are no methods for |
||
gr := Digraph(List([1 .. Length(l)], i -> Concatenation(l[i], r[i]))); | ||
gr := QuotientDigraph(gr, DigraphStronglyConnectedComponents(gr).comps); | ||
return List(OutNeighbours(gr), Set); | ||
|
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 you should be more descriptive about what the representation actually shows.
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.
We agreed this was not necessary.