From: bangerth Date: Mon, 23 Oct 2006 02:48:23 +0000 (+0000) Subject: Move everything into namespace dealii X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=35dec49e7d2d6c602bb7cacb9bff6e9d3a63ccc4;p=dealii-svn.git Move everything into namespace dealii git-svn-id: https://svn.dealii.org/trunk@14039 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/bits/deal_solver_04/cmp/generic b/tests/bits/deal_solver_04/cmp/generic index 2515ebf564..eb5cefe117 100644 --- a/tests/bits/deal_solver_04/cmp/generic +++ b/tests/bits/deal_solver_04/cmp/generic @@ -1,6 +1,6 @@ DEAL::Size 32 Unknowns 961 -DEAL::Solver type: 12SolverMinResI6VectorIdEE +DEAL::Solver type: N6dealii12SolverMinResINS_6VectorIdEEEE DEAL:minres::Starting value 31.00 DEAL:minres::Convergence step 43 value 0.0006916 DEAL::Solver stopped after 43 iterations diff --git a/tests/bits/deal_solver_05/cmp/generic b/tests/bits/deal_solver_05/cmp/generic index 0d62be6568..0d9ced6690 100644 --- a/tests/bits/deal_solver_05/cmp/generic +++ b/tests/bits/deal_solver_05/cmp/generic @@ -1,6 +1,6 @@ DEAL::Size 32 Unknowns 961 -DEAL::Solver type: 10SolverQMRSI6VectorIdEE +DEAL::Solver type: N6dealii10SolverQMRSINS_6VectorIdEEEE DEAL:QMRS::Starting value 31.00 DEAL:QMRS::Convergence step 46 value 0.0009063 DEAL::Solver stopped after 46 iterations diff --git a/tests/tests.h b/tests/tests.h index c7e4993f6a..8beb100127 100644 --- a/tests/tests.h +++ b/tests/tests.h @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2004, 2005 by the deal.II authors +// Copyright (C) 2004, 2005, 2006 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -21,6 +21,12 @@ #include #include + +// implicitly use the deal.II namespace everywhere, without us having to say +// so in each and every testcase +using namespace dealii; + + // overload floating point output operators for LogStream so that small // numbers below a certain threshold are simply printed as zeros. this removes // a number of possible places where output may differ depending on platform,