From: wolf Date: Thu, 30 Dec 1999 16:29:32 +0000 (+0000) Subject: Fix problem with added update_values tag. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a7ba5b7efe207d22e9bb4a2271e771d3413a86dc;p=dealii-svn.git Fix problem with added update_values tag. git-svn-id: https://svn.dealii.org/trunk@2136 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/deal.II/helmholtz1.th b/tests/deal.II/helmholtz1.th index 85373d700f..3f09e4f11d 100644 --- a/tests/deal.II/helmholtz1.th +++ b/tests/deal.II/helmholtz1.th @@ -10,8 +10,8 @@ Helmholtz::build_all(MATRIX& A, { const unsigned int fe_dofs = dof.get_fe().n_dofs_per_cell(); FEValues fe(dof.get_fe(), quadrature, - UpdateFlags(update_gradients | update_JxW_values | - update_q_points)); + UpdateFlags(update_values | update_gradients | + update_JxW_values | update_q_points)); Vector elvec(fe_dofs); FullMatrix elmat(fe_dofs); diff --git a/tests/deal.II/helmholtz1mg.th b/tests/deal.II/helmholtz1mg.th index b4d358e180..5bf4392710 100644 --- a/tests/deal.II/helmholtz1mg.th +++ b/tests/deal.II/helmholtz1mg.th @@ -8,8 +8,8 @@ Helmholtz::build_mgmatrix(MGMatrix& A, { const unsigned int fe_dofs = dof.get_fe().n_dofs_per_cell(); FEValues fe(dof.get_fe(), quadrature, - UpdateFlags(update_gradients | update_JxW_values | - update_q_points)); + UpdateFlags(update_values | update_gradients | + update_JxW_values | update_q_points)); Vector elvec(fe_dofs); FullMatrix elmat(fe_dofs);