Skip to content

Commit

Permalink
Merge pull request #13284 from bergbauer/fix-flags-bug-point-values
Browse files Browse the repository at this point in the history
[9.3] Fix flags bug point_values
  • Loading branch information
tamiko committed Jan 24, 2022
2 parents 99d65cd + a61bf12 commit 8c47427
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/deal.II/numerics/vector_tools_evaluate.h
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ namespace VectorTools
if (evaluators[cell->active_fe_index()] == nullptr)
evaluators[cell->active_fe_index()] =
std::make_unique<FEPointEvaluation<n_components, dim>>(
cache.get_mapping(), cell->get_fe(), flags);
cache.get_mapping(), cell->get_fe(), update_values);
auto &evaluator = *evaluators[cell->active_fe_index()];

evaluator.reinit(cell, unit_points);
Expand Down

0 comments on commit 8c47427

Please sign in to comment.