We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57a417e commit 9c63175Copy full SHA for 9c63175
unittest/python/test_MINRES.py
@@ -11,4 +11,6 @@
11
X = np.random.rand(dim,20)
12
B = A.dot(X)
13
X_est = minres.solve(B)
14
+print("A.dot(X_est):",A.dot(X_est))
15
+print("B:",B)
16
assert eigenpy.is_approx(A.dot(X_est),B,1e-6)
0 commit comments