From 37f83236ce5917cc2aa5cef810d7b227d77125bc Mon Sep 17 00:00:00 2001 From: Kyle Shores Date: Fri, 20 Sep 2024 10:45:38 -0500 Subject: [PATCH] relaxing tolerance --- test/unit/solver/test_linear_solver_policy.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/solver/test_linear_solver_policy.hpp b/test/unit/solver/test_linear_solver_policy.hpp index bf447c5a5..7bc4b7aab 100644 --- a/test/unit/solver/test_linear_solver_policy.hpp +++ b/test/unit/solver/test_linear_solver_policy.hpp @@ -201,7 +201,7 @@ void testRandomMatrix(std::size_t number_of_blocks) CopyToHostDense(x); check_results( - A, b, x, [&](const FloatingPointType a, const FloatingPointType b) -> void { EXPECT_NEAR(a, b, 1.0e-09); }); + A, b, x, [&](const FloatingPointType a, const FloatingPointType b) -> void { EXPECT_NEAR(a, b, 1.0e-07); }); } template