From 3069022e40d27d12c72b7a818c68338eae9d1b9d Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 14 Apr 2014 15:46:00 +0000 Subject: [PATCH] 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 --- tests/lapack/full_matrix_03.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; -- 2.39.5