Skip to content

Commit

Permalink
raising tolerance
Browse files Browse the repository at this point in the history
  • Loading branch information
K20shores committed Sep 23, 2024
1 parent 65f06e6 commit 31eea12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/solver/test_linear_solver_policy.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ void testExtremeInitialValue(std::size_t number_of_blocks, double initial_value)
CopyToHostDense<MatrixPolicy>(x);

check_results<FloatingPointType, MatrixPolicy, SparseMatrixPolicy>(
A, b, x, [&](const FloatingPointType a, const FloatingPointType b) -> void { EXPECT_NEAR(a, b, 1.0e-7); });
A, b, x, [&](const FloatingPointType a, const FloatingPointType b) -> void { EXPECT_NEAR(a, b, 1.0e-6); });
}

template<class MatrixPolicy, class SparseMatrixPolicy, class LinearSolverPolicy>
Expand Down

0 comments on commit 31eea12

Please sign in to comment.