Changes between Initial Version and Version 1 of Ticket #23706
- Timestamp:
- 08/25/17 00:07:22 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #23706 – Description
initial v1 1 1 Implement a generic matrix class using libgap as a backend and revamp the `MatrixSpace` constructor in order to be able to choose the implementation. 2 3 In particular with the proposed branch one can have access to 3 implementations of integer matrices 4 {{{ 5 sage: Mflint = MatrixSpace(ZZ, 3, implementation='flint') 6 sage: Mgeneric = MatrixSpace(ZZ, 3, implementation='generic') 7 sage: Mgap = MatrixSpace(ZZ, 3, implementation='gap') 8 }}}