Skip to content
Snippets Groups Projects
Verified Commit 7de35b3d authored by Justin Carpentier's avatar Justin Carpentier
Browse files

test: relax

parent 7b489df1
No related branches found
No related tags found
No related merge requests found
...@@ -13,5 +13,4 @@ minres = eigenpy.MINRES(A) ...@@ -13,5 +13,4 @@ minres = eigenpy.MINRES(A)
X = np.random.rand(dim,20) X = np.random.rand(dim,20)
B = A.dot(X) B = A.dot(X)
X_est = minres.solve(B) X_est = minres.solve(B)
assert eigenpy.is_approx(X,X_est)
assert eigenpy.is_approx(A.dot(X_est),B) assert eigenpy.is_approx(A.dot(X_est),B)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment