#15303: Coercion discovery fails to be transitive
-------------------------------------+-------------------------------------
       Reporter:  nbruin             |        Owner:
           Type:  defect             |       Status:  needs_work
       Priority:  major              |    Milestone:  sage-5.13
      Component:  coercion           |   Resolution:
       Keywords:                     |    Merged in:
        Authors:  Simon King         |    Reviewers:
Report Upstream:  N/A                |  Work issues:  Analyse recursion
         Branch:                     |  error
  u/SimonKing/ticket/15303           |       Commit:
   Dependencies:  #14711             |  74821fe5409c3104b5d6eb7407a8287d54170df9
                                     |     Stopgaps:
-------------------------------------+-------------------------------------

Comment (by SimonKing):

 The following sequence of commands results in a "recursion depth exceeded"
 (some other errors are expected, the example is taken from the doctests):
 {{{
 Sym = SymmetricFunctions(QQ)
 Q = Sym.kBoundedQuotient(3,t=1)
 Q
 km = Q.km()
 km
 F = Q.affineSchur()
 F(km(F[3,1,1])) == F[3,1,1]
 km(F(km([3,2]))) == km[3,2]
 F[3,2].lift()
 F[2,1]*F[2,1]
 F[1,2]
 km[2,1]*km[2,1]
 HLPk = Q.kHallLittlewoodP()
 HLPk[2,1]*HLPk[2,1]
 dks = Q.dual_k_Schur()
 dks[2,1]*dks[2,1]
 Q = Sym.kBoundedQuotient(3)
 Sym = SymmetricFunctions(QQ['t'].fraction_field())
 Q = Sym.kBoundedQuotient(3)
 km = Q.km()
 F = Q.affineSchur()
 F(km(F[3,1,1])) == F[3,1,1]
 km(F(km([3,2]))) == km[3,2]
 dks = Q.dual_k_Schur()
 HLPk = Q.kHallLittlewoodP()
 dks(HLPk(dks[3,1,1])) == dks[3,1,1]
 km(dks(km([3,2]))) == km[3,2]
 }}}
 Trying to minimise the example now...

--
Ticket URL: <http://trac.sagemath.org/ticket/15303#comment:33>
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/groups/opt_out.

Reply via email to