From 91a8d65020fb22614021831f6a20daa08432c1eb Mon Sep 17 00:00:00 2001 From: hartmann Date: Wed, 28 Mar 2001 09:36:59 +0000 Subject: [PATCH] Remove obsolete lines also in constructors of FESubfaceValues. git-svn-id: https://svn.dealii.org/trunk@4315 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/fe/fe_values.cc | 47 -------------------------- 1 file changed, 47 deletions(-) diff --git a/deal.II/deal.II/source/fe/fe_values.cc b/deal.II/deal.II/source/fe/fe_values.cc index 6bcc145253..8dc803e868 100644 --- a/deal.II/deal.II/source/fe/fe_values.cc +++ b/deal.II/deal.II/source/fe/fe_values.cc @@ -752,30 +752,6 @@ FESubfaceValues::FESubfaceValues (const Mapping &mapping, mapping_data = mapping.get_subface_data(flags, quadrature); fe_data = fe.get_subface_data(flags, mapping, quadrature); - - // The get_face_data functions - // might have added an update flag. - // Therefore collect all flags - // again. - // - // E.g. if update_JxW_values is set - // the update_boundary_forms flag - // is added within the - // Mapping::get_face_data function. - // If also update_normal_vectors is - // set this update_boundary_forms - // flag was already set by the - // update_once or update_each - // function resulting in no change - // in flags below, but if - // update_normal_vectors is not set - // this actually makes a - // difference. - flags |= mapping_data->update_once - | mapping_data->update_each - | fe_data->update_once - | fe_data->update_each; - // set up objects within this class FEValuesData::initialize(n_quadrature_points, dofs_per_cell, @@ -816,29 +792,6 @@ FESubfaceValues::FESubfaceValues (const FiniteElement &fe, mapping_data = mapping->get_subface_data(flags, quadrature); fe_data = fe.get_subface_data(flags, *mapping, quadrature); - // The get_face_data functions - // might have added an update flag. - // Therefore collect all flags - // again. - // - // E.g. if update_JxW_values is set - // the update_boundary_forms flag - // is added within the - // Mapping::get_face_data function. - // If also update_normal_vectors is - // set this update_boundary_forms - // flag was already set by the - // update_once or update_each - // function resulting in no change - // in flags below, but if - // update_normal_vectors is not set - // this actually makes a - // difference. - flags |= mapping_data->update_once - | mapping_data->update_each - | fe_data->update_once - | fe_data->update_each; - // set up objects within this class FEValuesData::initialize(n_quadrature_points, dofs_per_cell, -- 2.39.5