In sage-5.5.beta0 some stuff was merged that is supposed to speed 
up WeylCharacterRing, but I noticed the following taking forever now:

sage: A3 = WeylCharacterRing('A3', style='coroots')
sage: A3 = WeylCharacterRing('A3', style='coroots')
sage: A4(1,0,0,0,0).branch(A3)   # takes forever

No answer is returned within reasonable time.

If I omit the coroots style or explicitly specify the branching rule, the 
result is returned immediately:

sage: A4(1,0,0,0,0).branch(A3, rule='levi')
A3(0,0,0) + A3(1,0,0)
sage: A4 = WeylCharacterRing('A4')
sage: A3 = WeylCharacterRing('A3')
sage: A4(1,0,0,0,0).branch(A3)
A3(1,0,0,0) + A3(0,0,0,0)

Is it my fault for assuming that the default branching rule is the obvious? 
This worked fine in sage 5.4.

-- 
You received this message because you are subscribed to the Google Groups 
"sage-combinat-devel" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/sage-combinat-devel/-/GN1qrouenrwJ.
To post to this group, send email to sage-combinat-devel@googlegroups.com.
To unsubscribe from this group, send email to 
sage-combinat-devel+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sage-combinat-devel?hl=en.

Reply via email to