#15862: Mutability of tableaux, for the n-th time
-------------------------------------+-------------------------------------
       Reporter:  darij              |        Owner:
           Type:  defect             |       Status:  new
       Priority:  major              |    Milestone:  sage-6.4
      Component:  combinatorics      |   Resolution:
       Keywords:  tableaux, sage-    |    Merged in:
  combinat, mutability               |    Reviewers:
        Authors:                     |  Work issues:
Report Upstream:  N/A                |       Commit:
         Branch:  public/15862       |  b084115c1db195bad75112b94bf765255249d983
   Dependencies:                     |     Stopgaps:  #17997
-------------------------------------+-------------------------------------

Comment (by jkeitel):

 This is a bit ugly at the moment:

 {{{
 sage: t = Tableau([[1,2],[3]])
 sage: list(t)
 [(1, 2), (3,)]
 sage: t.to_list()
 [[1, 2], [3]]
 }}}

 The first calls the iterator, while the second returns an actual copy with
 the tuples converted to lists.

--
Ticket URL: <http://trac.sagemath.org/ticket/15862#comment:19>
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 unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sage-trac.
For more options, visit https://groups.google.com/d/optout.

Reply via email to