Opened 12 years ago
Closed 12 years ago
#8580 closed defect (fixed)
bug in matrix_mod2_dense (m4ri wrapper?): exhibited by bug in coercing into a 0-dimensional qotient vector space
Reported by: | was | Owned by: | malb |
---|---|---|---|
Priority: | major | Milestone: | sage-4.4 |
Component: | linear algebra | Keywords: | |
Cc: | Merged in: | sage-4.4.alpha0 | |
Authors: | Martin Albrecht | Reviewers: | William Stein |
Report Upstream: | N/A | Work issues: | |
Branch: | Commit: | ||
Dependencies: | Stopgaps: |
Description (last modified by )
wstein@boxen:~$ /usr/local/bin/sage ---------------------------------------------------------------------- | Sage Version 4.3.4, Release Date: 2010-03-19 | | Type notebook() for the GUI, and license() for information. | ---------------------------------------------------------------------- sage: V = GF(2)^3 sage: (V/V)(V.0) ------------------------------------------------------------ Unhandled SIGSEGV: A segmentation fault occured in SAGE. This probably occured because a *compiled* component of SAGE has a bug in it (typically accessing invalid memory) or is not properly wrapped with _sig_on, _sig_off. You might want to run SAGE under gdb with 'sage -gdb' to debug this. SAGE will now terminate (sorry). ------------------------------------------------------------
This is because of a bug in m4ri (or our wrapper of it), since with p=3 (instead of 2) everything works fine:
sage: V = GF(3)^3 sage: (V/V)(V.0) () sage:
Attachments (1)
Change History (6)
comment:1 Changed 12 years ago by
- Description modified (diff)
- Summary changed from Bug in coercing into a 0-dimensional qotient vector space to bug in matrix_mod2_dense (m4ri wrapper?): exhibited by bug in coercing into a 0-dimensional qotient vector space
comment:2 Changed 12 years ago by
- Description modified (diff)
- Owner changed from was to malb
Changed 12 years ago by
comment:3 Changed 12 years ago by
- Status changed from new to needs_review
comment:4 Changed 12 years ago by
- Status changed from needs_review to positive_review
Looks good. Thanks!
comment:5 Changed 12 years ago by
- Merged in set to sage-4.4.alpha0
- Resolution set to fixed
- Reviewers set to William Stein
- Status changed from positive_review to closed
Merged "vector_mod2_dense_zero.patch" in 4.4.alpha0
Note: See
TracTickets for help on using
tickets.
With GDB: