Skip to content

Commit 0f67ee9

Browse files
committed
test: fix accuracy
1 parent 4349faf commit 0f67ee9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unittest/python/test_self_adjoint_eigen_solver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
V = es.eigenvectors()
1414
D = es.eigenvalues()
1515

16-
assert eigenpy.is_approx(A.dot(V),V.dot(np.diag(D)))
16+
assert eigenpy.is_approx(A.dot(V),V.dot(np.diag(D)),1e-6)

0 commit comments

Comments
 (0)