#12339: Free Groups
--------------------------------+-------------------------------------------
Reporter: mmarco | Owner: joyner
Type: enhancement | Status: needs_review
Priority: major | Milestone: sage-5.5
Component: group theory | Resolution:
Keywords: free groups | Work issues:
Report Upstream: N/A | Reviewers: Volker Braun
Authors: Miguel Marco | Merged in:
Dependencies: #6391 | Stopgaps:
--------------------------------+-------------------------------------------
Comment (by mmarco):
Hm, i am now forgeting about the __cmp__ method, and just implementing
comparison through _cmp_ ... but that makes comparison by equality not
working.
I get something like this:
{{{
sage: F=FreeGroup('a,b,c')
sage: F.inject_variables()
Defining a, b, c
sage: a._cmp_(a*b/b)
0
sage: cmp(a,a*b/b)
0
sage: a.__cmp__(a*b/b)
0
}}}
but
{{{
sage: a==a*b/b
False
}}}
That didn't happen in the previous version.
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/12339#comment:48>
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.