Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
jh66637 committed Dec 24, 2023
1 parent 10a61ac commit 334ba56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/deal.II/matrix_free/fe_point_evaluation.h
Original file line number Diff line number Diff line change
Expand Up @@ -2597,7 +2597,7 @@ FEPointEvaluation<n_components_, dim, spacedim, Number>::integrate_slow(
"Not initialized. Please call FEPointEvaluation::reinit()!"));

const unsigned int dofs_per_comp =
is_linear ? Utilities::pow(2, dim) : dofs_per_component;
use_linear_path ? Utilities::pow(2, dim) : dofs_per_component;

if (!sum_into_values)
for (unsigned int i = component_in_base_element * dofs_per_comp;
Expand Down Expand Up @@ -2687,7 +2687,7 @@ FEPointEvaluation<n_components_, dim, spacedim, Number>::do_integrate(
EvaluationFlags::gradients))) // no integration flags
{
const unsigned int dofs_per_comp =
is_linear ? Utilities::pow(2, dim) : dofs_per_component;
use_linear_path ? Utilities::pow(2, dim) : dofs_per_component;

if (!sum_into_values)
for (unsigned int i = component_in_base_element * dofs_per_comp;
Expand Down

0 comments on commit 334ba56

Please sign in to comment.