/**
* Return the divergence of a vector-valued finite element at quadrature
- * point number @p q_point after a call to @p evaluate(...,true,...).
+ * point number @p q_point after a call to @p evaluate(EvaluationFlags::gradients).
*
- * @note Only available for n_components_==dim.
+ * @note Only available for the vector-valued case (n_components == dim).
*/
VectorizedArrayType
get_divergence(const unsigned int q_point) const;
/**
* Return the symmetric gradient of a vector-valued finite element at
* quadrature point number @p q_point after a call to @p
- * evaluate(...,true,...). It corresponds to <tt>0.5
+ * evaluate(EvaluationFlags::gradients). It corresponds to <tt>0.5
* (grad+grad<sup>T</sup>)</tt>.
*
- * @note Only available for n_components_==dim.
+ * @note Only available for the vector-valued case (n_components == dim).
*/
SymmetricTensor<2, dim, VectorizedArrayType>
get_symmetric_gradient(const unsigned int q_point) const;
/**
* Return the curl of the vector field, $\nabla \times v$ after a call to @p
- * evaluate(...,true,...).
+ * evaluate(EvaluationFlags::gradients).
*
- * @note Only available for n_components_==dim.
+ * @note Only available for the vector-valued case (n_components == dim).
*/
Tensor<1, (dim == 2 ? 1 : dim), VectorizedArrayType>
get_curl(const unsigned int q_point) const;