Changes between Version 12 and Version 15 of Ticket #23706
- Timestamp:
- 08/25/17 21:14:48 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #23706
-
Property
Status
changed from
new
toneeds_review
-
Property
Dependencies
changed from
to
#23704
-
Property
Commit
changed from
dce22c869eee2d2b4a6f59cd9f2e6b5eda633121
tof1013de2bc8d01830840422c367dbe9224d0aeb6
-
Property
Status
changed from
-
Ticket #23706 – Description
v12 v15 7 7 In particular with the proposed branch one can have access to 3 implementations of integer matrices 8 8 {{{ 9 sage: Mflint = MatrixSpace(ZZ, 3, implementation='flint') 10 sage: Mgeneric = MatrixSpace(ZZ, 3, implementation='generic') 11 sage: Mgap = MatrixSpace(ZZ, 3, implementation='gap') 9 sage: MatrixSpace(ZZ, 3, implementation='flint') 10 Full MatrixSpace of 3 by 3 dense matrices over Integer Ring 11 sage: MatrixSpace(ZZ, 3, implementation='generic') 12 Full MatrixSpace of 3 by 3 dense matrices over Integer Ring (using Matrix_generic_dense) 13 sage: MatrixSpace(ZZ, 3, implementation='gap') 14 Full MatrixSpace of 3 by 3 dense matrices over Integer Ring (using Matrix_gap) 12 15 }}} 13 16