#5705: [with patch, positive review] homogenize() does not respect the rule that
parents are unique
---------------------------------+------------------------------------------
Reporter: malb | Owner: malb
Type: defect | Status: new
Priority: major | Milestone: sage-3.4.1
Component: commutative algebra | Keywords:
---------------------------------+------------------------------------------
Comment(by SimonKing):
Indeed, without the patch, we have
{{{
sage: R=PolynomialRing(QQ,'x',5)
sage: p=R.random_element()
sage: q1=p.homogenize()
sage: q2=p.homogenize()
sage: q1.parent() is q2.parent()
False
}}}
With the patch, that cleanly applies, we have
{{{
sage: R=PolynomialRing(QQ,'x',5)
sage: p=R.random_element()
sage: q1=p.homogenize()
sage: q2=p.homogenize()
sage: q1.parent() is q2.parent()
True
}}}
So, I give it a positive review.
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/5705#comment:1>
Sage <http://sagemath.org/>
Sage - Open Source Mathematical Software: Building the Car Instead of
Reinventing the Wheel
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---