From: Wolfgang Bangerth Date: Sun, 24 Jan 2016 20:03:36 +0000 (-0600) Subject: Slightly clarify a comment. X-Git-Tag: v8.4.0-rc2~52^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc962bfb2a641af1397d121eb6e18adfdccd86af;p=dealii.git Slightly clarify a comment. --- diff --git a/doc/doxygen/headers/update_flags.h b/doc/doxygen/headers/update_flags.h index 30eb1a14d7..7628848974 100644 --- a/doc/doxygen/headers/update_flags.h +++ b/doc/doxygen/headers/update_flags.h @@ -1,6 +1,6 @@ // --------------------------------------------------------------------- // -// Copyright (C) 2006 - 2013, 2015 by the deal.II authors +// Copyright (C) 2006 - 2013, 2015, 2016 by the deal.II authors // // This file is part of the deal.II library. // @@ -172,7 +172,7 @@ * sufficient to evaluate the values of shape functions on a particular cell.) * * To accommodate this structure, both mappings and finite element classes - * internally split the update flags into two sets commonly referenced as + * may internally split the update flags into two sets commonly referenced as * update_once and update_each. The former contains * all those pieces of information that can be pre-computed once at the * time the FEValues object starts to interact with a mapping or @@ -246,15 +246,11 @@ * * * This is, where the actual data fields for FEValues, stored in - * FEValuesData objects is computed. These functions call the function in - * Mapping first, such that all the mapping data required by the finite - * element is available. Then, the FiniteElement function is called. - * - * When this happens for the first time after initialization, all the - * values specified by Mapping::InternalDataBase::update_once or - * Mapping::InternalDataBase::update_each are filled. After that, only - * the values specified by Mapping::InternalDataBase::update_each will be - * updated. + * internal::FEValues::MappingRelatedData and + * internal::FEValues::FiniteElementRelatedData objects, are + * computed. These functions call the function in Mapping first, such + * that all the mapping data required by the finite element is + * available. Then, the FiniteElement function is called. * * @ingroup feall */