From 4e934ee8e961fd56180101413e03f6f9d8f85517 Mon Sep 17 00:00:00 2001 From: janssen Date: Tue, 10 Jul 2012 21:39:25 +0000 Subject: [PATCH] fix for the moment git-svn-id: https://svn.dealii.org/branches/branch_higher_derivatives@25694 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/fe/fe_poly.templates.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/deal.II/include/deal.II/fe/fe_poly.templates.h b/deal.II/include/deal.II/fe/fe_poly.templates.h index 5385211949..bac8eaf231 100644 --- a/deal.II/include/deal.II/fe/fe_poly.templates.h +++ b/deal.II/include/deal.II/fe/fe_poly.templates.h @@ -244,12 +244,17 @@ FE_Poly::get_data (const UpdateFlags update_flags, std::vector > (n_q_points)); } + if (flags & update_hessians) + data->initialize_2nd (this, mapping, quadrature); + + /* if (flags & update_hessians) { hessians.resize (this->dofs_per_cell); data->shape_hessians.resize (this->dofs_per_cell, std::vector >(n_q_points)); } + */ if (flags & update_3rd_derivatives) { -- 2.39.5