From 6d95a623e58b5e5fbda8ec832ca6c48c0aeed99c Mon Sep 17 00:00:00 2001 From: kanschat Date: Wed, 2 May 2007 04:53:52 +0000 Subject: [PATCH] increase tolerance to 10^-13 git-svn-id: https://svn.dealii.org/trunk@14658 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/lac/sparse_matrices.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lac/sparse_matrices.cc b/tests/lac/sparse_matrices.cc index cae0de45ef..beb89a351a 100644 --- a/tests/lac/sparse_matrices.cc +++ b/tests/lac/sparse_matrices.cc @@ -372,7 +372,7 @@ int main() E.print_statistics(deallog, true); for (unsigned int i=0;i 1.e-14) + if (std::fabs(A_res[i] - E_res[i]) > 1.e-13) deallog << "SparseMatrix and SparseMatrixEZ differ!!!" << std::endl; // dump A into a file, and re-read -- 2.39.5