From: Wolfgang Bangerth Date: Sat, 18 Sep 2010 10:56:11 +0000 (+0000) Subject: Do not use deprecated classes QGaussN any more. X-Git-Tag: v8.0.0~5438 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a3e876dec470bba1c2c2712e15c4617a606b7a66;p=dealii.git Do not use deprecated classes QGaussN any more. git-svn-id: https://svn.dealii.org/trunk@22036 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/bits/mapping_cartesian_1.cc b/tests/bits/mapping_cartesian_1.cc index 5145b90a7b..6dd040d5fc 100644 --- a/tests/bits/mapping_cartesian_1.cc +++ b/tests/bits/mapping_cartesian_1.cc @@ -41,7 +41,7 @@ void check (const Triangulation &tria) DoFHandler dof_handler (tria); dof_handler.distribute_dofs (fe); - QGauss3 q_face; + QGauss q_face(3); FEFaceValues fe_face_values (mapping, fe, q_face, update_normal_vectors); diff --git a/tests/bits/normals_1.cc b/tests/bits/normals_1.cc index ff1c04d0dd..8430616531 100644 --- a/tests/bits/normals_1.cc +++ b/tests/bits/normals_1.cc @@ -39,7 +39,7 @@ void check (const Triangulation &tria) DoFHandler dof_handler (tria); dof_handler.distribute_dofs (fe); - QGauss3 q_face; + QGauss q_face(3); FEFaceValues fe_face_values (fe, q_face, update_normal_vectors | update_JxW_values); diff --git a/tests/bits/normals_2.cc b/tests/bits/normals_2.cc index 69c10d3134..882d6bce89 100644 --- a/tests/bits/normals_2.cc +++ b/tests/bits/normals_2.cc @@ -49,7 +49,7 @@ void check (const Triangulation &tria, dof_handler.distribute_dofs (fe); deallog.threshold_double(1.e-10); - QGauss3 q_face; + QGauss q_face(3); FEFaceValues fe_face_values (mapping, fe, q_face, update_normal_vectors | update_JxW_values); diff --git a/tests/bits/normals_3.cc b/tests/bits/normals_3.cc index d84d14aeed..36eb7096f4 100644 --- a/tests/bits/normals_3.cc +++ b/tests/bits/normals_3.cc @@ -44,7 +44,7 @@ void check (const Triangulation &tria) DoFHandler dof_handler (tria); dof_handler.distribute_dofs (fe); - QGauss3 q_face; + QGauss q_face(3); FEFaceValues fe_face_values (mapping, fe, q_face, update_normal_vectors | update_JxW_values); diff --git a/tests/bits/normals_4.cc b/tests/bits/normals_4.cc index 24d7dc9dda..321d72df80 100644 --- a/tests/bits/normals_4.cc +++ b/tests/bits/normals_4.cc @@ -44,7 +44,7 @@ void check (const Triangulation &tria) DoFHandler dof_handler (tria); dof_handler.distribute_dofs (fe); - QGauss3 q_face; + QGauss q_face(3); FEFaceValues fe_face_values (mapping, fe, q_face, update_normal_vectors | update_JxW_values); diff --git a/tests/bits/q_point_sum_1.cc b/tests/bits/q_point_sum_1.cc index 3ec387ad48..3a218af35c 100644 --- a/tests/bits/q_point_sum_1.cc +++ b/tests/bits/q_point_sum_1.cc @@ -37,7 +37,7 @@ void check (const Triangulation &tria) DoFHandler dof_handler (tria); dof_handler.distribute_dofs (fe); - QGauss3 q_face; + QGauss q_face(3); FEFaceValues fe_face_values (fe, q_face, update_q_points | update_JxW_values); diff --git a/tests/bits/q_point_sum_2.cc b/tests/bits/q_point_sum_2.cc index 3d775752a2..749556e59c 100644 --- a/tests/bits/q_point_sum_2.cc +++ b/tests/bits/q_point_sum_2.cc @@ -45,7 +45,7 @@ void check (const Triangulation &tria, DoFHandler dof_handler (tria); dof_handler.distribute_dofs (fe); - QGauss3 q_face; + QGauss q_face(3); FEFaceValues fe_face_values (mapping, fe, q_face, update_q_points | update_JxW_values); diff --git a/tests/bits/q_point_sum_3.cc b/tests/bits/q_point_sum_3.cc index 0b143df282..9382376adc 100644 --- a/tests/bits/q_point_sum_3.cc +++ b/tests/bits/q_point_sum_3.cc @@ -44,7 +44,7 @@ void check (const Triangulation &tria) DoFHandler dof_handler (tria); dof_handler.distribute_dofs (fe); - QGauss3 q_face; + QGauss q_face(3); FEFaceValues fe_face_values (mapping, fe, q_face, update_q_points | update_JxW_values); diff --git a/tests/bits/q_point_sum_4.cc b/tests/bits/q_point_sum_4.cc index bff162411e..4727651070 100644 --- a/tests/bits/q_point_sum_4.cc +++ b/tests/bits/q_point_sum_4.cc @@ -44,7 +44,7 @@ void check (const Triangulation &tria) DoFHandler dof_handler (tria); dof_handler.distribute_dofs (fe); - QGauss3 q_face; + QGauss q_face(3); FEFaceValues fe_face_values (mapping, fe, q_face, update_q_points | update_JxW_values); diff --git a/tests/bits/volume_1.cc b/tests/bits/volume_1.cc index e32eef11a2..b836bac115 100644 --- a/tests/bits/volume_1.cc +++ b/tests/bits/volume_1.cc @@ -38,7 +38,7 @@ void check (const Triangulation &tria) DoFHandler dof_handler (tria); dof_handler.distribute_dofs (fe); - QGauss3 q_face; + QGauss q_face(3); FEFaceValues fe_face_values (fe, q_face, update_normal_vectors | diff --git a/tests/bits/volume_2.cc b/tests/bits/volume_2.cc index b509aa1cb5..437f3413b9 100644 --- a/tests/bits/volume_2.cc +++ b/tests/bits/volume_2.cc @@ -48,7 +48,7 @@ void check (const Triangulation &tria, DoFHandler dof_handler (tria); dof_handler.distribute_dofs (fe); - QGauss3 q_face; + QGauss q_face(3); FEFaceValues fe_face_values (mapping, fe, q_face, update_normal_vectors | diff --git a/tests/bits/volume_3.cc b/tests/bits/volume_3.cc index a468182d8e..a74f771970 100644 --- a/tests/bits/volume_3.cc +++ b/tests/bits/volume_3.cc @@ -44,7 +44,7 @@ void check (const Triangulation &tria) DoFHandler dof_handler (tria); dof_handler.distribute_dofs (fe); - QGauss3 q_face; + QGauss q_face(3); FEFaceValues fe_face_values (mapping, fe, q_face, update_normal_vectors | diff --git a/tests/bits/volume_4.cc b/tests/bits/volume_4.cc index 4be568a8f6..e6438a31aa 100644 --- a/tests/bits/volume_4.cc +++ b/tests/bits/volume_4.cc @@ -44,7 +44,7 @@ void check (const Triangulation &tria) DoFHandler dof_handler (tria); dof_handler.distribute_dofs (fe); - QGauss3 q_face; + QGauss q_face(3); FEFaceValues fe_face_values (mapping, fe, q_face, update_normal_vectors | diff --git a/tests/deal.II/create_laplace_matrix_01.cc b/tests/deal.II/create_laplace_matrix_01.cc index ce2cf4d623..c21c14ed98 100644 --- a/tests/deal.II/create_laplace_matrix_01.cc +++ b/tests/deal.II/create_laplace_matrix_01.cc @@ -74,7 +74,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/deal.II/create_laplace_matrix_01b.cc b/tests/deal.II/create_laplace_matrix_01b.cc index 996db84cd7..0d5b0e9cc1 100644 --- a/tests/deal.II/create_laplace_matrix_01b.cc +++ b/tests/deal.II/create_laplace_matrix_01b.cc @@ -75,7 +75,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/deal.II/create_laplace_matrix_02.cc b/tests/deal.II/create_laplace_matrix_02.cc index b4fbfc726d..b39d22deef 100644 --- a/tests/deal.II/create_laplace_matrix_02.cc +++ b/tests/deal.II/create_laplace_matrix_02.cc @@ -74,7 +74,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/deal.II/create_laplace_matrix_02b.cc b/tests/deal.II/create_laplace_matrix_02b.cc index 37321c8582..2eea52cd62 100644 --- a/tests/deal.II/create_laplace_matrix_02b.cc +++ b/tests/deal.II/create_laplace_matrix_02b.cc @@ -75,7 +75,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/deal.II/create_laplace_matrix_03.cc b/tests/deal.II/create_laplace_matrix_03.cc index c60aa5ce6d..2ed854f9b2 100644 --- a/tests/deal.II/create_laplace_matrix_03.cc +++ b/tests/deal.II/create_laplace_matrix_03.cc @@ -73,7 +73,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/deal.II/create_laplace_matrix_03b.cc b/tests/deal.II/create_laplace_matrix_03b.cc index b24347ae1b..eb0c4a7df8 100644 --- a/tests/deal.II/create_laplace_matrix_03b.cc +++ b/tests/deal.II/create_laplace_matrix_03b.cc @@ -74,7 +74,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/deal.II/create_laplace_matrix_04.cc b/tests/deal.II/create_laplace_matrix_04.cc index 2f275d41ad..0da0aaf724 100644 --- a/tests/deal.II/create_laplace_matrix_04.cc +++ b/tests/deal.II/create_laplace_matrix_04.cc @@ -73,7 +73,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/deal.II/create_laplace_matrix_04b.cc b/tests/deal.II/create_laplace_matrix_04b.cc index f7a6bf7c7d..cb0ee70a81 100644 --- a/tests/deal.II/create_laplace_matrix_04b.cc +++ b/tests/deal.II/create_laplace_matrix_04b.cc @@ -74,7 +74,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/deal.II/create_mass_matrix_01.cc b/tests/deal.II/create_mass_matrix_01.cc index a86c374b0e..490d31c41e 100644 --- a/tests/deal.II/create_mass_matrix_01.cc +++ b/tests/deal.II/create_mass_matrix_01.cc @@ -74,7 +74,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/deal.II/create_mass_matrix_01b.cc b/tests/deal.II/create_mass_matrix_01b.cc index 201610a78e..92858c8d96 100644 --- a/tests/deal.II/create_mass_matrix_01b.cc +++ b/tests/deal.II/create_mass_matrix_01b.cc @@ -75,7 +75,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/deal.II/create_mass_matrix_02.cc b/tests/deal.II/create_mass_matrix_02.cc index 46e7a75956..1a2fa8d36b 100644 --- a/tests/deal.II/create_mass_matrix_02.cc +++ b/tests/deal.II/create_mass_matrix_02.cc @@ -74,7 +74,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/deal.II/create_mass_matrix_02b.cc b/tests/deal.II/create_mass_matrix_02b.cc index d089ffbaf7..6b28f76242 100644 --- a/tests/deal.II/create_mass_matrix_02b.cc +++ b/tests/deal.II/create_mass_matrix_02b.cc @@ -75,7 +75,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/deal.II/create_mass_matrix_03.cc b/tests/deal.II/create_mass_matrix_03.cc index edc2829752..48b8f5975f 100644 --- a/tests/deal.II/create_mass_matrix_03.cc +++ b/tests/deal.II/create_mass_matrix_03.cc @@ -73,7 +73,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/deal.II/create_mass_matrix_03b.cc b/tests/deal.II/create_mass_matrix_03b.cc index b5342d210a..a66d59bae1 100644 --- a/tests/deal.II/create_mass_matrix_03b.cc +++ b/tests/deal.II/create_mass_matrix_03b.cc @@ -74,7 +74,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/deal.II/create_mass_matrix_04.cc b/tests/deal.II/create_mass_matrix_04.cc index 142ea9fa0f..e621f4192f 100644 --- a/tests/deal.II/create_mass_matrix_04.cc +++ b/tests/deal.II/create_mass_matrix_04.cc @@ -73,7 +73,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/deal.II/create_mass_matrix_04b.cc b/tests/deal.II/create_mass_matrix_04b.cc index d1d4d3f520..c104595449 100644 --- a/tests/deal.II/create_mass_matrix_04b.cc +++ b/tests/deal.II/create_mass_matrix_04b.cc @@ -74,7 +74,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/deal.II/create_mass_matrix_05.cc b/tests/deal.II/create_mass_matrix_05.cc index 5e92baa735..af1f7dda78 100644 --- a/tests/deal.II/create_mass_matrix_05.cc +++ b/tests/deal.II/create_mass_matrix_05.cc @@ -65,7 +65,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different blocks should diff --git a/tests/deal.II/matrices.cc b/tests/deal.II/matrices.cc index 7af500d039..987df0b972 100644 --- a/tests/deal.II/matrices.cc +++ b/tests/deal.II/matrices.cc @@ -141,7 +141,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/fail/abf_approximation_01.cc b/tests/fail/abf_approximation_01.cc index 0247ad3848..e250cf66ac 100644 --- a/tests/fail/abf_approximation_01.cc +++ b/tests/fail/abf_approximation_01.cc @@ -359,7 +359,7 @@ double TestProjection (Mapping<2> &mapping, hn_constraints); hn_constraints.close (); VectorTools::project (mapping, *dof_handler, hn_constraints, - QGauss6<2> (), pol, + QGauss<2> (6), pol, solution); // Now evaluate error ... @@ -482,7 +482,7 @@ int main () { // Rotate element VectorTools::project (*dof_handler_def, hn_constraints_def, - QGauss6<2> (), TestDef1<2>(2, rotat), + QGauss<2> (6), TestDef1<2>(2, rotat), deformation); sprintf (buf, "phi = %e\n", rotat); deallog << buf; @@ -493,7 +493,7 @@ int main () for (double scale = -0.75; scale < 4.0; scale += 0.25) { VectorTools::project (*dof_handler_def, hn_constraints_def, - QGauss6<2> (), TestDef2<2>(2, scale), + QGauss<2> (6), TestDef2<2>(2, scale), deformation); sprintf (buf, "Scale = %e\n", scale); deallog << buf; @@ -504,7 +504,7 @@ int main () for (double scale = -1.0; scale < 1.0; scale += 0.25) { VectorTools::project (*dof_handler_def, hn_constraints_def, - QGauss6<2> (), TestDef3<2>(2, scale), + QGauss<2> (6), TestDef3<2>(2, scale), deformation); sprintf (buf, "Scale = %e\n", scale); deallog << buf; diff --git a/tests/fail/rt_distorted_01.cc b/tests/fail/rt_distorted_01.cc index afe16a6178..e1b51ed79b 100644 --- a/tests/fail/rt_distorted_01.cc +++ b/tests/fail/rt_distorted_01.cc @@ -349,7 +349,7 @@ int main (int /*argc*/, char **/*argv*/) hn_constraints); hn_constraints.close (); VectorTools::project (*dof_handler, hn_constraints, - QGauss6<2> (), TestMap1<2>(2), + QGauss<2> (6), TestMap1<2>(2), solution); // Project reference solution onto RT FE field @@ -360,7 +360,7 @@ int main (int /*argc*/, char **/*argv*/) hn_constraints_def.close (); VectorTools::project (*dof_handler_def, hn_constraints_def, - QGauss6<2> (), TestMap1<2>(2), + QGauss<2> (6), TestMap1<2>(2), solution_q); MappingQ1Eulerian<2> *mapping_euler @@ -379,12 +379,12 @@ int main (int /*argc*/, char **/*argv*/) { // Rotate element VectorTools::project (*dof_handler_def, hn_constraints_def, - QGauss6<2> (), TestDef1<2>(2, rotat), + QGauss<2> (6), TestDef1<2>(2, rotat), deformation); // Project 1 function to element VectorTools::project (*mapping_euler, *dof_handler, hn_constraints, - QGauss6<2> (), TestMap1<2>(2), + QGauss<2> (6), TestMap1<2>(2), solution); // Write output files @@ -412,12 +412,12 @@ int main (int /*argc*/, char **/*argv*/) for (double scale = -0.75; scale < 4.0; scale += 0.25) { VectorTools::project (*dof_handler_def, hn_constraints_def, - QGauss6<2> (), TestDef2<2>(2, scale), + QGauss<2> (6), TestDef2<2>(2, scale), deformation); // Project 1 function to element VectorTools::project (*mapping_euler, *dof_handler, hn_constraints, - QGauss6<2> (), TestMap1<2>(2), + QGauss<2> (6), TestMap1<2>(2), solution); char buf[1000]; @@ -433,12 +433,12 @@ int main (int /*argc*/, char **/*argv*/) for (double scale = -1.0; scale < 1.0; scale += 0.25) { VectorTools::project (*dof_handler_def, hn_constraints_def, - QGauss6<2> (), TestDef3<2>(2, scale), + QGauss<2> (6), TestDef3<2>(2, scale), deformation); // Project 1 function to element VectorTools::project (*mapping_euler, *dof_handler, hn_constraints, - QGauss6<2> (), TestMap1<2>(2), + QGauss<2> (6), TestMap1<2>(2), solution); char buf[1000]; diff --git a/tests/fail/rt_distorted_02.cc b/tests/fail/rt_distorted_02.cc index c2262bce84..34b6a5d7d6 100644 --- a/tests/fail/rt_distorted_02.cc +++ b/tests/fail/rt_distorted_02.cc @@ -370,7 +370,7 @@ int main () hn_constraints); hn_constraints.close (); VectorTools::project (dof_handler, hn_constraints, - QGauss6<2> (), TestMap1<2>(2), + QGauss<2> (6), TestMap1<2>(2), solution); // Project reference solution onto RT FE field @@ -381,7 +381,7 @@ int main () hn_constraints_def.close (); VectorTools::project (dof_handler_def, hn_constraints_def, - QGauss6<2> (), TestMap1<2>(2), + QGauss<2> (6), TestMap1<2>(2), solution_q); MappingQ1Eulerian<2> mapping_euler (deformation, dof_handler_def); @@ -396,7 +396,7 @@ int main () { // Rotate element VectorTools::project (dof_handler_def, hn_constraints_def, - QGauss6<2> (), TestDef1<2>(2, rotat), + QGauss<2> (6), TestDef1<2>(2, rotat), deformation); sprintf (buf,"phi = %e FE_RT Area %e FE_Q Area %e\n", rotat, @@ -409,7 +409,7 @@ int main () for (double scale = -0.75; scale < 4.0; scale += 0.25) { VectorTools::project (dof_handler_def, hn_constraints_def, - QGauss6<2> (), TestDef2<2>(2, scale), + QGauss<2> (6), TestDef2<2>(2, scale), deformation); sprintf (buf,"Scale = %e FE_RT Area %e FE_Q Area %e\n", scale, @@ -422,7 +422,7 @@ int main () for (double scale = -1.0; scale < 1.0; scale += 0.25) { VectorTools::project (dof_handler_def, hn_constraints_def, - QGauss6<2> (), TestDef3<2>(2, scale), + QGauss<2> (6), TestDef3<2>(2, scale), deformation); sprintf (buf,"Scale = %e FE_RT Area %e FE_Q Area %e\n", scale, diff --git a/tests/fe/abf_01.cc b/tests/fe/abf_01.cc index 8b6bdbbc4c..713c220a2c 100644 --- a/tests/fe/abf_01.cc +++ b/tests/fe/abf_01.cc @@ -628,7 +628,7 @@ int main (int /*argc*/, char **/*argv*/) hn_constraints.close (); MappingQ1<2> map_default; project (map_default, *dof_handler, hn_constraints, - QGauss6<2> (), ConstantFunction<2>(1., 2), + QGauss<2> (6), ConstantFunction<2>(1., 2), solution); EvaluateDerivative (dof_handler, solution); diff --git a/tests/fe/rt_approximation_01.cc b/tests/fe/rt_approximation_01.cc index e0344cd025..4c534d1cd5 100644 --- a/tests/fe/rt_approximation_01.cc +++ b/tests/fe/rt_approximation_01.cc @@ -359,7 +359,7 @@ double TestProjection (Mapping<2> &mapping, hn_constraints); hn_constraints.close (); VectorTools::project (mapping, *dof_handler, hn_constraints, - QGauss6<2> (), pol, + QGauss<2> (6), pol, solution); // Now evaluate error ... @@ -490,7 +490,7 @@ int main () { // Rotate element VectorTools::project (*dof_handler_def, hn_constraints_def, - QGauss6<2> (), TestDef1<2>(2, rotat), + QGauss<2> (6), TestDef1<2>(2, rotat), deformation); deallog << "phi = " << rotat << std::endl; TestProjection (mapping_euler, dof_handler); @@ -500,7 +500,7 @@ int main () for (double scale = -0.75; scale < 4.0; scale += 0.25) { VectorTools::project (*dof_handler_def, hn_constraints_def, - QGauss6<2> (), TestDef2<2>(2, scale), + QGauss<2> (6), TestDef2<2>(2, scale), deformation); deallog << "scale = " << scale << std::endl; TestProjection (mapping_euler, dof_handler); @@ -510,7 +510,7 @@ int main () for (double scale = -1.0; scale < 1.0; scale += 0.25) { VectorTools::project (*dof_handler_def, hn_constraints_def, - QGauss6<2> (), TestDef3<2>(2, scale), + QGauss<2> (6), TestDef3<2>(2, scale), deformation); deallog << "scale = " << scale << std::endl; TestProjection (mapping_euler, dof_handler); diff --git a/tests/hp/create_laplace_matrix_01.cc b/tests/hp/create_laplace_matrix_01.cc index 86cf1c11fb..75b8439c38 100644 --- a/tests/hp/create_laplace_matrix_01.cc +++ b/tests/hp/create_laplace_matrix_01.cc @@ -85,7 +85,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/hp/create_laplace_matrix_01b.cc b/tests/hp/create_laplace_matrix_01b.cc index 9c5476a488..c4c897ee40 100644 --- a/tests/hp/create_laplace_matrix_01b.cc +++ b/tests/hp/create_laplace_matrix_01b.cc @@ -86,7 +86,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/hp/create_laplace_matrix_02.cc b/tests/hp/create_laplace_matrix_02.cc index c82b186ee1..73d5e25651 100644 --- a/tests/hp/create_laplace_matrix_02.cc +++ b/tests/hp/create_laplace_matrix_02.cc @@ -87,7 +87,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/hp/create_laplace_matrix_02b.cc b/tests/hp/create_laplace_matrix_02b.cc index 785d996a76..d03ebae36e 100644 --- a/tests/hp/create_laplace_matrix_02b.cc +++ b/tests/hp/create_laplace_matrix_02b.cc @@ -88,7 +88,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/hp/create_laplace_matrix_03.cc b/tests/hp/create_laplace_matrix_03.cc index cec2790fe2..1b6507045d 100644 --- a/tests/hp/create_laplace_matrix_03.cc +++ b/tests/hp/create_laplace_matrix_03.cc @@ -84,7 +84,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/hp/create_laplace_matrix_03b.cc b/tests/hp/create_laplace_matrix_03b.cc index 485a9c0f5a..65c491f736 100644 --- a/tests/hp/create_laplace_matrix_03b.cc +++ b/tests/hp/create_laplace_matrix_03b.cc @@ -85,7 +85,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/hp/create_laplace_matrix_04.cc b/tests/hp/create_laplace_matrix_04.cc index 81d9952f43..b6f63e97c2 100644 --- a/tests/hp/create_laplace_matrix_04.cc +++ b/tests/hp/create_laplace_matrix_04.cc @@ -86,7 +86,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/hp/create_laplace_matrix_04b.cc b/tests/hp/create_laplace_matrix_04b.cc index 994da8d30b..0a8976ece2 100644 --- a/tests/hp/create_laplace_matrix_04b.cc +++ b/tests/hp/create_laplace_matrix_04b.cc @@ -87,7 +87,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/hp/create_mass_matrix_01.cc b/tests/hp/create_mass_matrix_01.cc index 076cacf4ae..9025cc8bac 100644 --- a/tests/hp/create_mass_matrix_01.cc +++ b/tests/hp/create_mass_matrix_01.cc @@ -85,7 +85,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/hp/create_mass_matrix_01b.cc b/tests/hp/create_mass_matrix_01b.cc index a63f58c8d1..dea8328f1e 100644 --- a/tests/hp/create_mass_matrix_01b.cc +++ b/tests/hp/create_mass_matrix_01b.cc @@ -86,7 +86,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/hp/create_mass_matrix_02.cc b/tests/hp/create_mass_matrix_02.cc index 5c694525b4..76daa24650 100644 --- a/tests/hp/create_mass_matrix_02.cc +++ b/tests/hp/create_mass_matrix_02.cc @@ -87,7 +87,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/hp/create_mass_matrix_02b.cc b/tests/hp/create_mass_matrix_02b.cc index 0db2e3e084..6943376d96 100644 --- a/tests/hp/create_mass_matrix_02b.cc +++ b/tests/hp/create_mass_matrix_02b.cc @@ -88,7 +88,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/hp/create_mass_matrix_03.cc b/tests/hp/create_mass_matrix_03.cc index 6b713e5e38..abc8ed5bfd 100644 --- a/tests/hp/create_mass_matrix_03.cc +++ b/tests/hp/create_mass_matrix_03.cc @@ -84,7 +84,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/hp/create_mass_matrix_03b.cc b/tests/hp/create_mass_matrix_03b.cc index f664d49330..e87efb75a7 100644 --- a/tests/hp/create_mass_matrix_03b.cc +++ b/tests/hp/create_mass_matrix_03b.cc @@ -87,7 +87,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/hp/create_mass_matrix_04.cc b/tests/hp/create_mass_matrix_04.cc index 0919861a07..80e300011c 100644 --- a/tests/hp/create_mass_matrix_04.cc +++ b/tests/hp/create_mass_matrix_04.cc @@ -86,7 +86,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/hp/create_mass_matrix_04b.cc b/tests/hp/create_mass_matrix_04b.cc index 5b0189904d..dc4ac6ab97 100644 --- a/tests/hp/create_mass_matrix_04b.cc +++ b/tests/hp/create_mass_matrix_04b.cc @@ -87,7 +87,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different components should diff --git a/tests/hp/create_mass_matrix_05.cc b/tests/hp/create_mass_matrix_05.cc index cfa52e5cfb..6048af19fe 100644 --- a/tests/hp/create_mass_matrix_05.cc +++ b/tests/hp/create_mass_matrix_05.cc @@ -80,7 +80,7 @@ check () // formula suited to the elements // we have here MappingQ mapping (3); - QGauss6 quadrature; + QGauss quadrature(6); // create sparsity pattern. note // that different blocks should