-
-
Notifications
You must be signed in to change notification settings - Fork 516
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
Implementation of the Schuetzenberger involution, the Lusztig involution and the promotion operator #10446
Comments
comment:2
This already looks very good! One suggestion I have is to check whether there is an alphabet associated to a given word 'self'. In this case it would be better to use the maximum of the alphabet instead of the maximum of the appearing letters. For example, if you inputted sage: w=Word([1,2,3],alphabet=[1,2,3,4,5]) then you would like the Schuetzenberger involution to return the word Anne |
Implementation of Schuetzenberger Involution on Words and Tableau |
comment:6
Attachment: trac_10446_schuetzenberger_involution.patch.gz This patch now contains two functions, both of which define the schuetzenberger involution - one that works on the class of words and the other on tableau. |
This comment has been minimized.
This comment has been minimized.
Reviewer: Anne Schilling |
This comment has been minimized.
This comment has been minimized.
comment:8
Replying to @anneschilling: This looks good and all tests pass! One suggestion I have is that it should be possible to pass the alphabet underlying a given tableau for the method schuetzenberger_involution for tableaux. Currently sage: t = Tableau([[1,1,4],[2]]) but if the underlying alphabet is different, the answer would be different. Also, for words it would be good to add a test that shows that one can have repeated letters: sage: w = Word([2,1,1,4], alphabet=[1,2,3,4,5,6]) Thanks so much for your work on this! Anne |
This comment has been minimized.
This comment has been minimized.
Changed author from Erin Beyerstedt, Ilke Canakci to Erin Beyerstedt, Ilke Canakci, Anne Schilling |
Changed reviewer from Anne Schilling to none |
comment:11
I just fixed the issues with the Schuetzenberger involution that were still bothering me and also added a new implementation of the promotion operator that can now act on tableaux of any shape. Apply trac_10446_schuetzenberger_involution-as.patch |
comment:12
Hi Anne, Thanks for the patch! I am happy to review this. The biggest issue I have right now is the name of the function 'has_letter'. I think that a function with that name should just return True or False. I think what I would prefer is for the method 'cells' to include an optional parameter. So, something like the following behavior:
What do you think? |
comment:13
Replying to @jbandlow:
What about:
to not pollute |
Changed keywords from schuetzenberger, involution, words to schuetzenberger, words, crystals |
comment:17
Just posted a new version of the patch including Dan's suggestion that the star map should be created as a dictionary when the crystal is created. |
comment:18
A new version of the patch is attached, where I changed the map i->i^* to a cached method rather than an attribute of the crystal according to Nicolas' suggestion on the sage-combinat mailing list. Cheers, Anne |
This comment has been minimized.
This comment has been minimized.
comment:20
Following Dan's suggestions, the Lustzig involution is now a method of ClassicalCrystals. It also works for finite-dimensional highest weight crystals of type I hope this is now finally ready! Anne |
This comment has been minimized.
This comment has been minimized.
Changed reviewer from Jason Bandlow to Jason Bandlow, Nicolas Thiery |
comment:22
Posted a slightly revised version incorporating Nicolas' review patch. Jason, could you give it a final review? Anne |
comment:23
Hi Anne, The code looks good to me, but it fails to apply for me to a clean 4.6.2. Are there dependencies? -Jason |
comment:25
Hi Anne, I don't have the latest alpha, but I tested the patch on the sage-combinat queue, as well as looked carefully at the code, and it looks good to me. Thanks! |
comment:26
Apply trac_10446_schuetzenberger_involution-as.patch |
comment:27
Hi Jeroen, Would it be possible to get this patch into sage-4.7 for Sage Days 30? Thank you, Anne |
comment:29
Replying to @anneschilling:
Well, I kind of made sage-4.7 "feature-complete" already, so I prefer not to do this. Normally, it should go into sage-4.7.1.alpha0 in time for Sage Days 30. |
comment:30
Could you remove the following part from the commit message, which doesn't really serve any purpose:
|
comment:31
Attachment: trac_10446_schuetzenberger_involution-as.patch.gz Replying to @jdemeyer:
Done. I left the first sentence since it does serve a purpose. |
Merged: sage-4.7.1.alpha0 |
Changed reviewer from Jason Bandlow, Nicolas Thiery to Jason Bandlow, Nicolas M. Thiéry |
This patch implements the Schuetzenberger involution on both words and tableaux. In addition it generalizes the promotion operator on tableaux to act not only on rectangular tableaux, but tableaux of any shape.
For crystals in the category ClassicalCrystals, the Lusztig involution is implemented and tested in type
A
to give the same result as the Schuetzenberger involution.A section about the Lusztig involution is added to the thematic tutorial on crystals. A copy of the html documentation built using
is available here:
http://www.math.ucdavis.edu/~anne/sage/lie/crystals.html
(which might not always be completely up to date).
Apply trac_10446_schuetzenberger_involution-as.patch
CC: @anneschilling @sagetrac-ilke @sagetrac-sage-combinat
Component: combinatorics
Keywords: schuetzenberger, words, crystals
Author: Erin Beyerstedt, Ilke Canakci, Anne Schilling
Reviewer: Jason Bandlow, Nicolas M. Thiéry
Merged: sage-4.7.1.alpha0
Issue created by migration from https://trac.sagemath.org/ticket/10446
The text was updated successfully, but these errors were encountered: