Skip to content

Commit

Permalink
Merge pull request #212 from drew-parsons/relax_lapack_cholevsky_test…
Browse files Browse the repository at this point in the history
…_tolerance

relax tolerance in the xlapack.solveCholesky test
  • Loading branch information
SylvainCorlay committed Oct 19, 2021
2 parents 9db35e2 + fd24ac0 commit db0815e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_lapack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ namespace xt
-1.3449222878385465 , -1.81183493755905478};

for (int i = 0; i < x_expected.shape()[0]; ++i) {
EXPECT_DOUBLE_EQ(x_expected[i], x[i]);
EXPECT_NEAR(x_expected[i], x[i], 5e-16);
}
}

Expand Down

0 comments on commit db0815e

Please sign in to comment.