From a61bf12b85ce8e6a45c6188186267d16b9afdea0 Mon Sep 17 00:00:00 2001 From: Maximilian Bergbauer Date: Mon, 24 Jan 2022 13:50:56 +0100 Subject: [PATCH] Fix flags bug point_values --- include/deal.II/numerics/vector_tools_evaluate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.5