Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/sage/matrix/matrix_gfpn_dense.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -689,6 +689,7 @@ cdef class Matrix_gfpn_dense(Matrix_dense):

TESTS::

sage: from sage.matrix.matrix_gfpn_dense import Matrix_gfpn_dense
sage: K.<z> = GF(59)
sage: M = MatrixSpace(K, 3, 4, implementation=Matrix_gfpn_dense)(range(12))
Comment on lines +692 to 694
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
sage: from sage.matrix.matrix_gfpn_dense import Matrix_gfpn_dense
sage: K.<z> = GF(59)
sage: M = MatrixSpace(K, 3, 4, implementation=Matrix_gfpn_dense)(range(12))
sage: K.<z> = GF(25)
sage: M = MatrixSpace(K, 3, 4, implementation='meataxe')(range(12)) # optional - meataxe, needs sage.rings.finite_rings

Copy link
Contributor Author

@antonio-rojas antonio-rojas Aug 26, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This doesn't work for me, it gives a AssertionError. Also, the optional - meataxe directive is not necessary as it's already present at the top of the file

sage: M
Expand Down
Loading