From: Wolfgang Bangerth Date: Mon, 14 Apr 2014 15:46:00 +0000 (+0000) Subject: Adjust tolerance for the new 'tester' machine that produces errors on X-Git-Tag: v8.2.0-rc1~604 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3069022e40d27d12c72b7a818c68338eae9d1b9d;p=dealii.git Adjust tolerance for the new 'tester' machine that produces errors on the order of 1.5e-12. git-svn-id: https://svn.dealii.org/trunk@32772 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/lapack/full_matrix_03.cc b/tests/lapack/full_matrix_03.cc index 35b55bedad..f8a0cd6270 100644 --- a/tests/lapack/full_matrix_03.cc +++ b/tests/lapack/full_matrix_03.cc @@ -1,7 +1,7 @@ // --------------------------------------------------------------------- // $Id$ // -// Copyright (C) 2005 - 2013 by the deal.II authors +// Copyright (C) 2005 - 2014 by the deal.II authors // // This file is part of the deal.II library. // @@ -96,7 +96,7 @@ void test_rect(unsigned int m, unsigned int n, const double *values) LA.Tvmult(u, v2); u *= -1; A.Tvmult_add(u, v2); - if (u.l2_norm() < 1.e-12) + if (u.l2_norm() < 1.e-11) deallog << "Tvmult ok" << std::endl; else deallog << "Tvmult error " << u.l2_norm() << std::endl; @@ -104,7 +104,7 @@ void test_rect(unsigned int m, unsigned int n, const double *values) A.Tvmult(u, v2); u *= -1; LA.Tvmult_add(u, v2); - if (u.l2_norm() < 1.e-12) + if (u.l2_norm() < 1.e-11) deallog << "Tvmult_add ok" << std::endl; else deallog << "Tvmult_add error " << u.l2_norm() << std::endl;