#8322: on sage.combinat.tableau.insert_word() , parameter left= is broken   (fix
provided)
-----------------------------+----------------------------------------------
   Reporter:  drini          |       Owner:  somebody
       Type:  defect         |      Status:  new     
   Priority:  major          |   Milestone:  sage-4.7
  Component:  combinatorics  |    Keywords:          
     Author:  Pedro Sanchez  |    Upstream:  N/A     
   Reviewer:                 |      Merged:          
Work_issues:                 |  
-----------------------------+----------------------------------------------

Comment(by jbandlow):

 The left=True parameter does have an effect. One can compare:

 {{{
     sage: t = Tableau([[2, 3], [3]])
     sage: w = [1, 1, 3, 3]
     sage: t.insert_word(w)
     [[1, 1, 3, 3], [2, 3], [3]]
     sage: t.insert_word(w, left=True)
     [[1, 1, 2, 3, 3, 3], [3]]
 }}}

 The latter is returning the result of Schensted inserting the
 concatenation of the words w and the reading word of t (in that order).
 This operation is used in the code for katabolism (and possibly
 elsewhere), and reflects multiplication in the plactic monoid.

-- 
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/8322#comment:2>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica, 
and MATLAB

-- 
You received this message because you are subscribed to the Google Groups 
"sage-trac" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sage-trac?hl=en.

Reply via email to