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

unittest: debug

parent 57a417ee
No related branches found
No related tags found
No related merge requests found
Pipeline #15944 passed with warnings
......@@ -11,4 +11,6 @@ minres = eigenpy.MINRES(A)
X = np.random.rand(dim,20)
B = A.dot(X)
X_est = minres.solve(B)
print("A.dot(X_est):",A.dot(X_est))
print("B:",B)
assert eigenpy.is_approx(A.dot(X_est),B,1e-6)
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