From: Maximilian Bergbauer Date: Mon, 24 Jan 2022 12:50:56 +0000 (+0100) Subject: Fix flags bug point_values X-Git-Tag: v9.3.3~2^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a61bf12b85ce8e6a45c6188186267d16b9afdea0;p=dealii.git Fix flags bug point_values --- diff --git a/include/deal.II/numerics/vector_tools_evaluate.h b/include/deal.II/numerics/vector_tools_evaluate.h index 342af035bd..c0d9f8cb1b 100644 --- a/include/deal.II/numerics/vector_tools_evaluate.h +++ b/include/deal.II/numerics/vector_tools_evaluate.h @@ -234,7 +234,7 @@ namespace VectorTools if (evaluators[cell->active_fe_index()] == nullptr) evaluators[cell->active_fe_index()] = std::make_unique>( - 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);