]> https://gitweb.dealii.org/ - dealii.git/commitdiff
fix reference type
authorGuido Kanschat <dr.guido.kanschat@gmail.com>
Mon, 15 Mar 2010 14:33:14 +0000 (14:33 +0000)
committerGuido Kanschat <dr.guido.kanschat@gmail.com>
Mon, 15 Mar 2010 14:33:14 +0000 (14:33 +0000)
git-svn-id: https://svn.dealii.org/trunk@20827 0785d39b-7218-0410-832d-ea1e28bc413d

tests/deal.II/mesh_worker_02.cc

index 382c220c70bb5db36916ed0f66d6b500834a545a..72feafdff4a685b36d0091f47fdd5152f0e74d3f 100644 (file)
@@ -70,7 +70,7 @@ template <int dim>
 void MatrixIntegrator<dim>::bdry(MeshWorker::DoFInfo<dim>& dinfo,
                                 typename MeshWorker::IntegrationWorker<dim>::FaceInfo& info)
 {
-  const FEFaceValuesBase<dim>& fe = info.fe_values();
+  const FEValuesBase<dim>& fe = info.fe_values();
   FullMatrix<double>& local_matrix = dinfo.matrix(0).matrix;
   
   const unsigned int deg = fe.get_fe().tensor_degree();
@@ -92,8 +92,8 @@ void MatrixIntegrator<dim>::face(MeshWorker::DoFInfo<dim>& dinfo1,
                                 typename MeshWorker::IntegrationWorker<dim>::FaceInfo& info1,
                                 typename MeshWorker::IntegrationWorker<dim>::FaceInfo& info2)
 {
-  const FEFaceValuesBase<dim>& fe1 = info1.fe_values();
-  const FEFaceValuesBase<dim>& fe2 = info2.fe_values();
+  const FEValuesBase<dim>& fe1 = info1.fe_values();
+  const FEValuesBase<dim>& fe2 = info2.fe_values();
   FullMatrix<double>& matrix_v1u1 = dinfo1.matrix(0, false).matrix;
   FullMatrix<double>& matrix_v1u2 = dinfo1.matrix(0, true).matrix;
   FullMatrix<double>& matrix_v2u1 = dinfo2.matrix(0, true).matrix;

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.