From: Martin Kronbichler Date: Sat, 28 Oct 2017 16:33:51 +0000 (+0200) Subject: Fix comments. X-Git-Tag: v9.0.0-rc1~857^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c37372cfa57c0a56e9680a98abb1e85ea5f0bace;p=dealii.git Fix comments. --- diff --git a/include/deal.II/matrix_free/fe_evaluation.h b/include/deal.II/matrix_free/fe_evaluation.h index ca1eff12f4..c8a728fe24 100644 --- a/include/deal.II/matrix_free/fe_evaluation.h +++ b/include/deal.II/matrix_free/fe_evaluation.h @@ -1914,8 +1914,8 @@ public: static const unsigned int n_components = n_components_; static const unsigned int static_n_q_points = Utilities::fixed_int_power::value; static const unsigned int static_dofs_per_component = Utilities::fixed_int_power::value; - static const unsigned int tensor_dofs_per_cell = n_components *static_dofs_per_component; - static const unsigned int static_dofs_per_cell = n_components *static_dofs_per_component; + static const unsigned int tensor_dofs_per_cell = static_dofs_per_component *n_components; + static const unsigned int static_dofs_per_cell = static_dofs_per_component *n_components; /** * Constructor. Takes all data stored in MatrixFree. If applied to problems @@ -2039,7 +2039,7 @@ public: /** * The number of degrees of freedom on the cell accumulated over all * components in the current evaluation object. Usually close to - * static_dofs_per_component*n_components=static_dofs_per_cell, but the + * static_dofs_per_cell = static_dofs_per_component*n_components, but the * number depends on the actual element selected and is thus not static. */ const unsigned int dofs_per_cell;