From: Martin Kronbichler Date: Wed, 13 May 2020 10:55:29 +0000 (+0200) Subject: Always inline FEEvaluationBase::inverse_jacobian X-Git-Tag: v9.3.0-rc1~1648^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f481a55d018e79d15a07927f7f61e936beb51d97;p=dealii.git Always inline FEEvaluationBase::inverse_jacobian --- diff --git a/include/deal.II/matrix_free/fe_evaluation.h b/include/deal.II/matrix_free/fe_evaluation.h index 6ecbcdf292..5bb31013b4 100644 --- a/include/deal.II/matrix_free/fe_evaluation.h +++ b/include/deal.II/matrix_free/fe_evaluation.h @@ -3549,8 +3549,8 @@ template -inline Tensor<2, dim, VectorizedArrayType> -FEEvaluationBase:: +inline DEAL_II_ALWAYS_INLINE Tensor<2, dim, VectorizedArrayType> + FEEvaluationBase:: inverse_jacobian(const unsigned int q_index) const { AssertIndexRange(q_index, n_quadrature_points); @@ -3561,12 +3561,14 @@ FEEvaluationBase:: return jacobian[q_index]; } + + template -std::array +inline std::array FEEvaluationBase:: get_cell_ids() const {