From 2913042ec7a05c7626e55da16795f628d862b100 Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Sun, 5 Apr 2020 13:42:57 +0200 Subject: [PATCH] Fix bug in VectorTools::get_position_vector for high order mappings --- include/deal.II/numerics/vector_tools.templates.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/deal.II/numerics/vector_tools.templates.h b/include/deal.II/numerics/vector_tools.templates.h index 8bce666efa..18917f863f 100644 --- a/include/deal.II/numerics/vector_tools.templates.h +++ b/include/deal.II/numerics/vector_tools.templates.h @@ -9697,7 +9697,7 @@ namespace VectorTools { const Quadrature quad(fe.get_unit_support_points()); - MappingQ map_q(fe.degree); + MappingQGeneric map_q(fe.degree); FEValues fe_v(map_q, fe, quad, update_quadrature_points); std::vector dofs(fe.dofs_per_cell); -- 2.39.5