Ticket #5717 (closed defect: duplicate)
subdivide and matrices mod 2 -- printing broken
| Reported by: | was | Owned by: | was |
|---|---|---|---|
| Priority: | major | Milestone: | sage-3.4.1 |
| Component: | linear algebra | Keywords: | |
| Cc: | Work issues: | ||
| Report Upstream: | Reviewers: | ||
| Authors: | Merged in: | ||
| Dependencies: | Stopgaps: |
Description
Printing of subdivisions of matrices mod 2 is broken. Also, lifting of matrices should preserve subdivision but doesn't, but that's a separate ticket (#5716)
sage: a = random_matrix(GF(2),4) sage: a.subdivide(2,2) sage: a [1 0 1 0] [1 0 1 0] [1 1 1 1] [1 1 0 1] sage: b = a.lift() sage: b.subdivide(2,2) sage: b [1 0|1 0] [1 0|1 0] [---+---] [1 1|1 1] [1 1|0 1]
Change History
Note: See
TracTickets for help on using
tickets.

This is a dup of #5714.