From: bangerth Date: Sun, 19 Sep 2010 13:48:40 +0000 (+0000) Subject: Remove use of QGauss2/QGauss6. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=76e24f1109cfb7af3ca8387ef9a28cef485a9576;p=dealii-svn.git Remove use of QGauss2/QGauss6. git-svn-id: https://svn.dealii.org/trunk@22046 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/fe/deformed_projection.h b/tests/fe/deformed_projection.h index 36dfb8e1b1..149947ffb0 100644 --- a/tests/fe/deformed_projection.h +++ b/tests/fe/deformed_projection.h @@ -2,7 +2,7 @@ // deformed_projection.h,v 1.3 2003/06/09 16:00:38 wolf Exp // Version: // -// Copyright (C) 2003, 2005, 2006, 2007, 2008 by the deal.II authors +// Copyright (C) 2003, 2005, 2006, 2007, 2008, 2010 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -473,7 +473,7 @@ void project (const Mapping &mapping, const Function &function, Vector &vec, const bool enforce_zero_boundary = false, - const Quadrature & = QGauss2(), + const Quadrature & = QGauss(2), const bool project_to_boundary_first = false) { Assert (dof.get_fe().n_components() == function.n_components, @@ -727,7 +727,7 @@ void check (const FiniteElement<2> &fe) MappingQ1<2> map_default; project (map_default, *dof_handler, hn_constraints, - QGauss6<2> (), TestMap1<2>(2), + QGauss<2> (6), TestMap1<2>(2), solution); // Test the core functionality