Skip to content

Commit fed6c9f

Browse files
committed
Add a crosslink in multimodular algorithm
1 parent 5833d41 commit fed6c9f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/sage/matrix/matrix_rational_dense.pyx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1514,17 +1514,18 @@ cdef class Matrix_rational_dense(Matrix_dense):
15141514
15151515
- ``'padic'``: an algorithm based on the IML `p`-adic solver,
15161516
1517-
- ``'multimodular'``: uses a multimodular algorithm implemented in Python
1517+
- ``'multimodular'``: uses a multimodular algorithm implemented in Cython
15181518
that uses linbox modulo many primes,
1519+
see :func:`~sage.matrix.misc.matrix_rational_echelon_form_multimodular`,
15191520
15201521
- ``'classical'``: just clear each column using Gauss elimination.
15211522
15221523
- ``height_guess``, ``**kwds`` -- all passed to the
1523-
multimodular algorithm; ignored by other algorithms
1524+
``'multimodular'`` algorithm; ignored by other algorithms
15241525
15251526
- ``proof`` -- boolean or ``None`` (default: None, see
15261527
proof.linear_algebra or sage.structure.proof). Passed to the
1527-
multimodular algorithm. Note that the Sage global default is
1528+
``'multimodular'`` algorithm. Note that the Sage global default is
15281529
``proof=True``.
15291530
15301531
EXAMPLES::

0 commit comments

Comments
 (0)