-New: The methods FEEvaluation/FEEFacevaluation::gather_evaluate/integrate_scatter()
-can now also accept block vectors.
+New: The methods FEEvaluation::gather_evaluate(),
+FEEFaceEvaluation::gather_evaluate(), FEEvaluation::integrate_scatter() and
+FEfaceEvaluation::integrate_scatter() can now also accept block vectors.
<br>
(Peter Munch, Magdalena Schreter, Martin Kronbichler, 2020/08/31)
// The second thing to note is that we have to compute global minimum and
// maximum $\max_j |\nabla r_j|$ and $\min_j |\nabla r_j|$. Following the
// same ideas used to compute the time step size in the class member
- // <code>%TimeStepping<dim>::step()</code> we define $\max_j |\nabla r_j|$
+ // <code>%TimeStepping\<dim>::%step()</code> we define $\max_j |\nabla r_j|$
// and $\min_j |\nabla r_j|$ as atomic doubles in order to resolve any
// conflicts between threads. As usual, we use
// <code>Utilities::MPI::max()</code> and
* Get the XDMF content associated with this entry.
* If the entry is not valid, this returns an empty string.
*
- * @deprecated Use @ref get_xdmf_content(const unsigned int, const ReferenceCell::Type &) instead.
+ * @deprecated Use the overload taking an `unsigned int` and a
+ * `const ReferenceCell::Type &` instead.
*/
DEAL_II_DEPRECATED
std::string
/**
* Default Constructor.
*
- * @deprecated Use dealii::DoFHandler(true) instead.
+ * @deprecated Use the overload taking a `bool` instead.
*/
DEAL_II_DEPRECATED
DoFHandler();
/**
* Constructor. Take @p tria as the triangulation to work on.
*
- * @deprecated Use dealii::DoFHandler(tria, true) instead.
+ * @deprecated Use the overload taking a
+ * `const Triangulation<dim, spacedim>&` and a `bool` instead.
*/
DEAL_II_DEPRECATED
DoFHandler(const Triangulation<dim, spacedim> &tria);