Skip to content
Draft
Show file tree
Hide file tree
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/doc/en/reference/matrices/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ objects like operation tables (e.g. the multiplication table of a group).
sage/matrix/matrix_gf2e_dense
sage/matrix/matrix_modn_dense_double
sage/matrix/matrix_modn_dense_float
sage/matrix/matrix_modn_dense_flint
sage/matrix/matrix_modn_sparse
sage/matrix/matrix_symbolic_dense
sage/matrix/matrix_symbolic_sparse
Expand Down
8 changes: 4 additions & 4 deletions src/sage/matrix/matrix_modn_dense_flint.pyx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# distutils: extra_compile_args = -D_XPG6
# flags chosen from libs/flint/fmpz_poly.pyx
r"""
FLINT nmod_mat class wrapper
Dense matrices over `\Zmod{n}` for `n < 2^{64}` using FLINT

This file implements matrices over `\ZZ/N\ZZ` for `N < 2^{64}` (or `N < 2^{32}` on 32-bit systems).
It also adds some capabilities for composite `N` that are not present in FLINT.
This file implements matrices over `\Zmod{n}` for `n < 2^{64}` (or `n < 2^{32}` on 32-bit systems).
It also adds some capabilities for composite `n` that are not present in FLINT.

AUTHORS:

Expand Down Expand Up @@ -72,7 +72,7 @@ MAX_MODULUS = (sys.maxsize + 1) << 1

cdef class Matrix_modn_dense_flint(Matrix_dense):
r"""
Matrices modulo `N` for `N < 2^{63}`
Matrices modulo `n` for `n < 2^{64}` (or `n < 2^{32}` on 32-bit systems).

EXAMPLES::

Expand Down
Loading