]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Do not use deprecated classes QGaussN any more.
authorWolfgang Bangerth <bangerth@math.tamu.edu>
Sat, 18 Sep 2010 10:56:11 +0000 (10:56 +0000)
committerWolfgang Bangerth <bangerth@math.tamu.edu>
Sat, 18 Sep 2010 10:56:11 +0000 (10:56 +0000)
git-svn-id: https://svn.dealii.org/trunk@22036 0785d39b-7218-0410-832d-ea1e28bc413d

53 files changed:
tests/bits/mapping_cartesian_1.cc
tests/bits/normals_1.cc
tests/bits/normals_2.cc
tests/bits/normals_3.cc
tests/bits/normals_4.cc
tests/bits/q_point_sum_1.cc
tests/bits/q_point_sum_2.cc
tests/bits/q_point_sum_3.cc
tests/bits/q_point_sum_4.cc
tests/bits/volume_1.cc
tests/bits/volume_2.cc
tests/bits/volume_3.cc
tests/bits/volume_4.cc
tests/deal.II/create_laplace_matrix_01.cc
tests/deal.II/create_laplace_matrix_01b.cc
tests/deal.II/create_laplace_matrix_02.cc
tests/deal.II/create_laplace_matrix_02b.cc
tests/deal.II/create_laplace_matrix_03.cc
tests/deal.II/create_laplace_matrix_03b.cc
tests/deal.II/create_laplace_matrix_04.cc
tests/deal.II/create_laplace_matrix_04b.cc
tests/deal.II/create_mass_matrix_01.cc
tests/deal.II/create_mass_matrix_01b.cc
tests/deal.II/create_mass_matrix_02.cc
tests/deal.II/create_mass_matrix_02b.cc
tests/deal.II/create_mass_matrix_03.cc
tests/deal.II/create_mass_matrix_03b.cc
tests/deal.II/create_mass_matrix_04.cc
tests/deal.II/create_mass_matrix_04b.cc
tests/deal.II/create_mass_matrix_05.cc
tests/deal.II/matrices.cc
tests/fail/abf_approximation_01.cc
tests/fail/rt_distorted_01.cc
tests/fail/rt_distorted_02.cc
tests/fe/abf_01.cc
tests/fe/rt_approximation_01.cc
tests/hp/create_laplace_matrix_01.cc
tests/hp/create_laplace_matrix_01b.cc
tests/hp/create_laplace_matrix_02.cc
tests/hp/create_laplace_matrix_02b.cc
tests/hp/create_laplace_matrix_03.cc
tests/hp/create_laplace_matrix_03b.cc
tests/hp/create_laplace_matrix_04.cc
tests/hp/create_laplace_matrix_04b.cc
tests/hp/create_mass_matrix_01.cc
tests/hp/create_mass_matrix_01b.cc
tests/hp/create_mass_matrix_02.cc
tests/hp/create_mass_matrix_02b.cc
tests/hp/create_mass_matrix_03.cc
tests/hp/create_mass_matrix_03b.cc
tests/hp/create_mass_matrix_04.cc
tests/hp/create_mass_matrix_04b.cc
tests/hp/create_mass_matrix_05.cc

index 5145b90a7b7d6dde7b2aeb9246cc8d2a9844a196..6dd040d5fcaed3639d4ce62dcb30ee751c51ec58 100644 (file)
@@ -41,7 +41,7 @@ void check (const Triangulation<dim> &tria)
   DoFHandler<dim> dof_handler (tria);
   dof_handler.distribute_dofs (fe);
 
-  QGauss3<dim-1> q_face;
+  QGauss<dim-1> q_face(3);
   
   FEFaceValues<dim>    fe_face_values (mapping, fe, q_face,
                                        update_normal_vectors);
index ff1c04d0ddf39c423067c3a2a87b6eee1f3529e0..84306165315b1b0e19fc8e6463dc82099ae58919 100644 (file)
@@ -39,7 +39,7 @@ void check (const Triangulation<dim> &tria)
   DoFHandler<dim> dof_handler (tria);
   dof_handler.distribute_dofs (fe);
 
-  QGauss3<dim-1> q_face;
+  QGauss<dim-1> q_face(3);
   
   FEFaceValues<dim>    fe_face_values (fe, q_face,
                                        update_normal_vectors | update_JxW_values);
index 69c10d3134c6064f6c0c5989d066d617db59acae..882d6bce899cba67448ac199a87b0ff8833c44ad 100644 (file)
@@ -49,7 +49,7 @@ void check (const Triangulation<dim> &tria,
   dof_handler.distribute_dofs (fe);
   deallog.threshold_double(1.e-10);
 
-  QGauss3<dim-1> q_face;
+  QGauss<dim-1> q_face(3);
   
   FEFaceValues<dim>    fe_face_values (mapping, fe, q_face,
                                        update_normal_vectors | update_JxW_values);
index d84d14aeed6cea78508d4fbe50b89b581d61a14f..36eb7096f4a9f6c6829ed81fb227412728e2e746 100644 (file)
@@ -44,7 +44,7 @@ void check (const Triangulation<dim> &tria)
   DoFHandler<dim> dof_handler (tria);
   dof_handler.distribute_dofs (fe);
 
-  QGauss3<dim-1> q_face;
+  QGauss<dim-1> q_face(3);
   
   FEFaceValues<dim>    fe_face_values (mapping, fe, q_face,
                                        update_normal_vectors | update_JxW_values);
index 24d7dc9dda54f365bcf9e6d68415cf72b31cb719..321d72df80d3ee0a3e11e7ebf8719b0bb43dd353 100644 (file)
@@ -44,7 +44,7 @@ void check (const Triangulation<dim> &tria)
   DoFHandler<dim> dof_handler (tria);
   dof_handler.distribute_dofs (fe);
 
-  QGauss3<dim-1> q_face;
+  QGauss<dim-1> q_face(3);
   
   FEFaceValues<dim>    fe_face_values (mapping, fe, q_face,
                                        update_normal_vectors | update_JxW_values);
index 3ec387ad48b84be079c6c303a893aa18e3f1e161..3a218af35cb0dab517ecf2abd94a61991aec07f0 100644 (file)
@@ -37,7 +37,7 @@ void check (const Triangulation<dim> &tria)
   DoFHandler<dim> dof_handler (tria);
   dof_handler.distribute_dofs (fe);
 
-  QGauss3<dim-1> q_face;
+  QGauss<dim-1> q_face(3);
   
   FEFaceValues<dim>    fe_face_values (fe, q_face,
                                        update_q_points | update_JxW_values);
index 3d775752a248c126795d290e678ebc07e0cd26c6..749556e59ceeeed3956a801bac34cc11ef1a2817 100644 (file)
@@ -45,7 +45,7 @@ void check (const Triangulation<dim> &tria,
   DoFHandler<dim> dof_handler (tria);
   dof_handler.distribute_dofs (fe);
 
-  QGauss3<dim-1> q_face;
+  QGauss<dim-1> q_face(3);
   
   FEFaceValues<dim>    fe_face_values (mapping, fe, q_face,
                                        update_q_points | update_JxW_values);
index 0b143df282f57ecdffafae174080abbcd6947cb6..9382376adc194f31e99eca9eee6e81e681649eec 100644 (file)
@@ -44,7 +44,7 @@ void check (const Triangulation<dim> &tria)
   DoFHandler<dim> dof_handler (tria);
   dof_handler.distribute_dofs (fe);
 
-  QGauss3<dim-1> q_face;
+  QGauss<dim-1> q_face(3);
   
   FEFaceValues<dim>    fe_face_values (mapping, fe, q_face,
                                        update_q_points | update_JxW_values);
index bff162411ebe6ec6ad92615e80aaa508ffa580ef..472765107033761d61eafdbba7b82e3f569798d3 100644 (file)
@@ -44,7 +44,7 @@ void check (const Triangulation<dim> &tria)
   DoFHandler<dim> dof_handler (tria);
   dof_handler.distribute_dofs (fe);
 
-  QGauss3<dim-1> q_face;
+  QGauss<dim-1> q_face(3);
   
   FEFaceValues<dim>    fe_face_values (mapping, fe, q_face,
                                        update_q_points | update_JxW_values);
index e32eef11a24ee0f7adce356f7acecd9bee0d9966..b836bac1153a7f374c7646c54ded5fdd69a2a272 100644 (file)
@@ -38,7 +38,7 @@ void check (const Triangulation<dim> &tria)
   DoFHandler<dim> dof_handler (tria);
   dof_handler.distribute_dofs (fe);
 
-  QGauss3<dim-1> q_face;
+  QGauss<dim-1> q_face(3);
   
   FEFaceValues<dim>    fe_face_values (fe, q_face,
                                        update_normal_vectors |
index b509aa1cb55d4dd00753ad6db46cf17f60c6b4d7..437f3413b9efdf9079b2151a6d524f6caf705b11 100644 (file)
@@ -48,7 +48,7 @@ void check (const Triangulation<dim> &tria,
   DoFHandler<dim> dof_handler (tria);
   dof_handler.distribute_dofs (fe);
 
-  QGauss3<dim-1> q_face;
+  QGauss<dim-1> q_face(3);
   
   FEFaceValues<dim>    fe_face_values (mapping, fe, q_face,
                                        update_normal_vectors |
index a468182d8ea1534ec5d1d1f9626df17a7f1af089..a74f771970459a5c2cc17289e8766b38986e02ed 100644 (file)
@@ -44,7 +44,7 @@ void check (const Triangulation<dim> &tria)
   DoFHandler<dim> dof_handler (tria);
   dof_handler.distribute_dofs (fe);
 
-  QGauss3<dim-1> q_face;
+  QGauss<dim-1> q_face(3);
   
   FEFaceValues<dim>    fe_face_values (mapping, fe, q_face,
                                        update_normal_vectors |
index 4be568a8f60e018020a8be8d9791ff68e8e3117a..e6438a31aa27ee516fdf6908e2be12bb1caf62f7 100644 (file)
@@ -44,7 +44,7 @@ void check (const Triangulation<dim> &tria)
   DoFHandler<dim> dof_handler (tria);
   dof_handler.distribute_dofs (fe);
 
-  QGauss3<dim-1> q_face;
+  QGauss<dim-1> q_face(3);
   
   FEFaceValues<dim>    fe_face_values (mapping, fe, q_face,
                                        update_normal_vectors |
index ce2cf4d62330e40e3232fc233ae08cb8a0558e7a..c21c14ed985480623bac6061824723d16428d5f1 100644 (file)
@@ -74,7 +74,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index 996db84cd7f85e5023cd6bf42fba7b7568d085f4..0d5b0e9cc17aca17ccb781a473155e6254b8230c 100644 (file)
@@ -75,7 +75,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index b4fbfc726d5a70bdc95241df90655aeb63dad15c..b39d22deef608e75d4079bc4c8d42e7f878c3c06 100644 (file)
@@ -74,7 +74,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index 37321c8582b65a5b2e7bbf88eb661f8835f09088..2eea52cd62f88966a692ccdf374d72c81af14f42 100644 (file)
@@ -75,7 +75,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index c60aa5ce6d3f505b70681e52b1b08db5be3cbc05..2ed854f9b20d01290746fbd87d5dcb81c07300c4 100644 (file)
@@ -73,7 +73,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index b24347ae1b7dcb6f3654ed9b7fba7ee1a50cc2c6..eb0c4a7df813e18010da952963c3d952f5b0addf 100644 (file)
@@ -74,7 +74,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index 2f275d41adac2beb425f6bdfb629a37ebb60e026..0da0aaf724c2274c4e0cc3e69c7cdf1aebdc4c26 100644 (file)
@@ -73,7 +73,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index f7a6bf7c7da0aecd5a3b4d2a7c96f7d69d59356f..cb0ee70a811a925b23c846884806c8292d850340 100644 (file)
@@ -74,7 +74,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index a86c374b0e2965e3cc148fa93b63538f4ff3f2f7..490d31c41e468994c85c50966f0d42524007e6a0 100644 (file)
@@ -74,7 +74,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index 201610a78e5bf318b498d0e02a13a39980b46df3..92858c8d965a303225fe6c0f0d7ea2ea4072c05b 100644 (file)
@@ -75,7 +75,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index 46e7a759565279031a95b404a25449ade95766af..1a2fa8d36b4214c9fa73e48ec6807ff3f36b4fa7 100644 (file)
@@ -74,7 +74,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index d089ffbaf722522da79035e49095c371df5bd1aa..6b28f762428a1ee385f6eefe9f005fa6ad9c3080 100644 (file)
@@ -75,7 +75,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index edc28297522b0276828a52c55c550692ea1c1916..48b8f5975fb253ca92b2c7f94b1c35e0d859633a 100644 (file)
@@ -73,7 +73,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index b5342d210a523d46a19699f533d8ae89ca3d9cc9..a66d59bae1cb887ac16222943e41c2b7b23bb55a 100644 (file)
@@ -74,7 +74,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index 142ea9fa0fe94744766ea822c10274ffa5c4f0e4..e621f4192f6f333c88490a28304c320ae606cd82 100644 (file)
@@ -73,7 +73,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index d1d4d3f52010fe3330f9fbddf1d03adea9f17084..c104595449910432a506857ef021bb2395cc33a5 100644 (file)
@@ -74,7 +74,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index 5e92baa73527784b3bfdd46c2b473c4bb576bd8a..af1f7dda789076b43c7f1c7bbad7595433c62cdd 100644 (file)
@@ -65,7 +65,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different blocks should
index 7af500d0393b1d57de79911621cbbde4c1eb3844..987df0b97240f86de488c6177ba2b9254961d6ac 100644 (file)
@@ -141,7 +141,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index 0247ad384800ae92a261acf241976d157dbfdafa..e250cf66ac34b2ae27b38de21af4cf49649a0909 100644 (file)
@@ -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;
index afe16a6178f32b9c842b756ace23e25218656466..e1b51ed79b9ae51fa9ad2a3c88f5a60e06079ce3 100644 (file)
@@ -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];
index c2262bce846bcb3cacb0fba0fdb245b78436a839..34b6a5d7d6512b7d5aff96a9a105e94f095aedcf 100644 (file)
@@ -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,
index 8b6bdbbc4c888a3aedd19f4e094f314e41bdd600..713c220a2c8282dd670afe92e8818ebe2343e10d 100644 (file)
@@ -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);
index e0344cd0258074e1c9dd09ad64a2be0a80446e08..4c534d1cd5752841ec88e8fac85feef6bd24f00b 100644 (file)
@@ -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);
index 86cf1c11fb0e592f2674dfdfe504fcf662c8378b..75b8439c383607fbadd95a40536ff5e362ffe9dd 100644 (file)
@@ -85,7 +85,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index 9c5476a488ec538f5906f5013637ee236e860db3..c4c897ee40ece866b730431935f46aeae6cbf5bc 100644 (file)
@@ -86,7 +86,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index c82b186ee1481d25e5e4b4e0852edf647dd17eca..73d5e25651b2d68f161c7deb03c3ba5d195627ff 100644 (file)
@@ -87,7 +87,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index 785d996a766f3aca0fe7c0a87d788223b7502bb4..d03ebae36edb80fa688c8e76c39d3bdf509110f4 100644 (file)
@@ -88,7 +88,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index cec2790fe29e7eccb55935d9157d188dec6a9d18..1b6507045d3602ec28c16ef86297d958c152bf41 100644 (file)
@@ -84,7 +84,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index 485a9c0f5aefec2b9620eb019047e63327c1845c..65c491f7367a5d09b9638a97c979bcdb1c09481d 100644 (file)
@@ -85,7 +85,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index 81d9952f43ffaaba2fb23e3aec0fce49f907181f..b6f63e97c27a3802f3ee21359a61e66e00654385 100644 (file)
@@ -86,7 +86,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index 994da8d30bfa7a62463027e2b8954e381d5ccb45..0a8976ece2107c95940c26a281e5a2302bca3132 100644 (file)
@@ -87,7 +87,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index 076cacf4aee7c00416c5c72fe39a30af9279040d..9025cc8bac909c9985cfade2679e9d8c4b7da2e3 100644 (file)
@@ -85,7 +85,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index a63f58c8d18ee09b651bf1c86c385b87a0ff9486..dea8328f1eaa72915bbae118858a3ebaa329fb84 100644 (file)
@@ -86,7 +86,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index 5c694525b446d26146f12dc09299aaec959aedc1..76daa2465000932e59ce4ca3ef29a6023de5f632 100644 (file)
@@ -87,7 +87,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index 0db2e3e084e239f30c99f22a3f9f1290df26ce63..6943376d96746fad5b05b534febd0ddd0d542c87 100644 (file)
@@ -88,7 +88,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index 6b713e5e3862d3435ecd9cc6806bd27a06f77e92..abc8ed5bfd10b27feabc5d05f36a51b5aa00385a 100644 (file)
@@ -84,7 +84,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index f664d49330a5cf6192fe8106d595973e4c7b0c6e..e87efb75a7d8a21f0616ff161c3d14f5c2fa8c99 100644 (file)
@@ -87,7 +87,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index 0919861a07a8b81053089ed9c66f64dd27af6181..80e300011c20907849dc3ea7d5971b849d1bee4f 100644 (file)
@@ -86,7 +86,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index 5b0189904dfb12d934fa618f238e0d2ba79bb732..dc4ac6ab97b9c2740945c3a27cb9170dfe5141b2 100644 (file)
@@ -87,7 +87,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different components should
index cfa52e5cfb73f444989b22610ff7fe29cf075a9a..6048af19fe5b688c2360c25529039167d4e3936f 100644 (file)
@@ -80,7 +80,7 @@ check ()
                                   // formula suited to the elements
                                   // we have here
   MappingQ<dim> mapping (3);
-  QGauss6<dim> quadrature;
+  QGauss<dim> quadrature(6);
 
                                   // create sparsity pattern. note
                                   // that different blocks should

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.