From b715679c59eddb0a6d000750106847a5b483ec7e Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 2 May 2006 23:13:34 +0000 Subject: [PATCH] Fix a bug where we weren't asking for the right fe_index in hp mode. git-svn-id: https://svn.dealii.org/trunk@12999 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/numerics/vectors.templates.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/deal.II/include/numerics/vectors.templates.h b/deal.II/deal.II/include/numerics/vectors.templates.h index 116bfe9bc0..a9a6088eb1 100644 --- a/deal.II/deal.II/include/numerics/vectors.templates.h +++ b/deal.II/deal.II/include/numerics/vectors.templates.h @@ -995,7 +995,7 @@ interpolate_boundary_values (const Mapping &mapping, // boundary values of dofs on this // face face_dofs.resize (fe.dofs_per_face); - face->get_dof_indices (face_dofs); + face->get_dof_indices (face_dofs, cell->active_fe_index()); fe_values.reinit(cell, face_no); const std::vector > &dof_locations = fe_values.get_quadrature_points (); -- 2.39.5