#17530: AssertionError in relativize()
---------------------------------+------------------------
       Reporter:  jdemeyer       |        Owner:
           Type:  defect         |       Status:  new
       Priority:  major          |    Milestone:  sage-6.5
      Component:  number fields  |   Resolution:
       Keywords:                 |    Merged in:
        Authors:                 |    Reviewers:
Report Upstream:  N/A            |  Work issues:
         Branch:                 |       Commit:
   Dependencies:  #12005         |     Stopgaps:
---------------------------------+------------------------

Comment (by fwclarke):

 The problem is that in the code for
 `sage.rings.number_field.number_field.NumberField_absolute.relativize` the
 lines
 {{{
             L = alpha.domain()
             alpha = alpha(L.gen()) # relativize over phi's domain
 }}}
 take no account of the possibility that `L` could be a ''relative'' number
 field.  Expanding this to read
 {{{
             L = alpha.domain()
             if L.is_relative():
                 L = L.absolute_field('a')
                 alpha = alpha.abs_hom()
             alpha = alpha(L.gen()) # relativize over phi's domain
 }}}
 seems to solve the problem.

--
Ticket URL: <http://trac.sagemath.org/ticket/17530#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 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