#13220: bug in morphisms of chain complexes
----------------------------------+-----------------------------------------
Reporter: jhpalmieri | Owner: jhpalmieri
Type: defect | Status: new
Priority: minor | Milestone: sage-5.3
Component: algebraic topology | Keywords: sd40
Work issues: | Report Upstream: N/A
Reviewers: | Authors: John Palmieri
Merged in: | Dependencies:
Stopgaps: |
----------------------------------+-----------------------------------------
The attached patch fixes a bug when defining morphisms of chain complexes:
the code was supposed to check that a product of two matrices was zero,
but used
{{{
A * B.is_zero()
}}}
rather than
{{{
(A * B).is_zero()
}}}
As a result, some valid maps of chain complexes were flagged as invalid.
The patch fixes this.
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/13220>
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.