From a7ba5b7efe207d22e9bb4a2271e771d3413a86dc Mon Sep 17 00:00:00 2001 From: wolf Date: Thu, 30 Dec 1999 16:29:32 +0000 Subject: [PATCH] Fix problem with added update_values tag. git-svn-id: https://svn.dealii.org/trunk@2136 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/deal.II/helmholtz1.th | 4 ++-- tests/deal.II/helmholtz1mg.th | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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); -- 2.39.5