From: Wolfgang Bangerth Date: Mon, 4 May 1998 08:36:55 +0000 (+0000) Subject: Doc updates. X-Git-Tag: v8.0.0~23018 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d9d3a89b0c6a0feb1d4e40b3b781b53f9543ac71;p=dealii.git Doc updates. git-svn-id: https://svn.dealii.org/trunk@236 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/numerics/base.h b/deal.II/deal.II/include/numerics/base.h index 88e650243b..ab68ddf70d 100644 --- a/deal.II/deal.II/include/numerics/base.h +++ b/deal.II/deal.II/include/numerics/base.h @@ -260,6 +260,14 @@ class ProblemBase { */ ProblemBase (); + /** + * Destructor. Declare this only to have + * a virtual destructor, which is safer + * as we have virtual functions. + * It actually does nothing spectacular. + */ + virtual ~ProblemBase (); + /** * Use this triangulation and * degree of freedom object during the @@ -282,14 +290,6 @@ class ProblemBase { */ void clear (); - /** - * Destructor. Declare this only to have - * a virtual destructor, which is safer - * as we have virtual functions. - * It actually does nothing spectacular. - */ - virtual ~ProblemBase (); - /** * Initiate the process of assemblage of * vectors and system matrix. Use the @@ -331,7 +331,7 @@ class ProblemBase { const FiniteElement &fe, const NormType &norm, const Boundary &boundary=StraightBoundary()) const; - + /** * Initialize the #DataOut# object with * the grid and DoF handler used for this diff --git a/deal.II/deal.II/include/numerics/error_estimator.h b/deal.II/deal.II/include/numerics/error_estimator.h index e4d31301d0..a657083270 100644 --- a/deal.II/deal.II/include/numerics/error_estimator.h +++ b/deal.II/deal.II/include/numerics/error_estimator.h @@ -82,6 +82,9 @@ class dVector; of the elements has to be shifted one level up or down. See the documentation for the #FEFaceValues# class for more information about technical issues regarding this topic. + + The error estimator returns a vector of estimated errors per cell which + can be used to feed rge #Triangulation::refine_*# functions. @author Wolfgang Bangerth, 1998; thanks to Franz-Theo Suttmeier for clarifications about boundary conditions.