Skip to content

Commit 75d0cdc

Browse files
author
Matthias Koeppe
committed
Update imports in doctests
1 parent 19f38a0 commit 75d0cdc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/sage/matrix/misc_flint.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def matrix_integer_dense_rational_reconstruction(Matrix_integer_dense A, Integer
3232
EXAMPLES::
3333
3434
sage: B = ((matrix(ZZ, 3,4, [1,2,3,-4,7,2,18,3,4,3,4,5])/3)%500).change_ring(ZZ)
35-
sage: from sage.matrix.misc import matrix_integer_dense_rational_reconstruction
35+
sage: from sage.matrix.misc_flint import matrix_integer_dense_rational_reconstruction
3636
sage: matrix_integer_dense_rational_reconstruction(B, 500)
3737
[ 1/3 2/3 1 -4/3]
3838
[ 7/3 2/3 6 1]

src/sage/matrix/misc_mpfr.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def hadamard_row_bound_mpfr(Matrix A):
3333
happens to be sharp. ::
3434
3535
sage: a = matrix(ZZ, 2, [2^10000, 3^10000, 2^50, 3^19292])
36-
sage: from sage.matrix.misc import hadamard_row_bound_mpfr
36+
sage: from sage.matrix.misc_mpfr import hadamard_row_bound_mpfr
3737
sage: hadamard_row_bound_mpfr(a.change_ring(RR))
3838
13976
3939
sage: len(str(a.det()))

0 commit comments

Comments
 (0)