*/
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
*/
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
const FiniteElement<dim> &fe,
const NormType &norm,
const Boundary<dim> &boundary=StraightBoundary<dim>()) const;
-
+
/**
* Initialize the #DataOut# object with
* the grid and DoF handler used for this
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<dim>::refine_*# functions.
@author Wolfgang Bangerth, 1998; thanks to Franz-Theo Suttmeier for
clarifications about boundary conditions.