Skip to content

Commit

Permalink
12406: test that the solution is inexact
Browse files Browse the repository at this point in the history
  • Loading branch information
mwageringel committed Mar 31, 2020
1 parent c1178d9 commit 93cea85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/matrix/matrix2.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -764,7 +764,7 @@ cdef class Matrix(Matrix1):
sage: RF = RealField(52)
sage: B = matrix(RF, 2, 2, 1)
sage: A = matrix(RF, [[0.24, 1, 0], [1, 0, 0]])
sage: (A * A.solve_right(B) - B).norm() < 1e-14
sage: 0 < (A * A.solve_right(B) - B).norm() < 1e-14
True
"""
try:
Expand Down

0 comments on commit 93cea85

Please sign in to comment.