From 5d7a058e9d19329521200706b2fccccc7437b6dd Mon Sep 17 00:00:00 2001 From: Guido Kanschat Date: Thu, 26 Jan 2006 09:26:44 +0000 Subject: [PATCH] fix a bug in the documentation git-svn-id: https://svn.dealii.org/trunk@12175 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/fe/fe.h | 36 +++++++++++++++------------------ 1 file changed, 16 insertions(+), 20 deletions(-) diff --git a/deal.II/deal.II/include/fe/fe.h b/deal.II/deal.II/include/fe/fe.h index 1431457b97..933810375c 100644 --- a/deal.II/deal.II/include/fe/fe.h +++ b/deal.II/deal.II/include/fe/fe.h @@ -1584,30 +1584,26 @@ class FiniteElement : public Subscriptor, protected: /** - * Array of projection matrices. See - * get_restriction_matrix() above. - * - * Matrices in this array are - * automatically initialized to - * correct size. If the derived - * finite element class does not - * implement these matrices, they - * should be resized to zero - * size. + * Array of projection + * matrices. See + * get_restriction_matrix() + * above. The constructor + * initializes these matrices to + * zero dimensions, which can be + * changed by derived classes + * implementing them. */ FullMatrix restriction[GeometryInfo::children_per_cell]; /** - * Array of embedding matrices. See - * get_prolongation_matrix() above. - * - * Matrices in this array are - * automatically initialized to - * correct size. If the derived - * finite element class does not - * implement these matrices, they - * should be resized to zero - * size. + * Array of embedding + * matrices. See + * get_prolongation_matrix() + * above. The constructor + * initializes these matrices to + * zero dimensions, which can be + * changed by derived classes + * implementing them. */ FullMatrix prolongation[GeometryInfo::children_per_cell]; -- 2.39.5