From 6f7dc7e93c35ead0a5f2275c9554e4d06eb49f29 Mon Sep 17 00:00:00 2001 From: Jonathan Robey Date: Wed, 31 Aug 2016 18:01:06 -0700 Subject: [PATCH] Change update_cell_normal_vectors to update_normal_vectors --- include/deal.II/fe/fe_poly.templates.h | 4 ++-- include/deal.II/fe/fe_poly_face.templates.h | 4 ++-- source/fe/fe_face.cc | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/include/deal.II/fe/fe_poly.templates.h b/include/deal.II/fe/fe_poly.templates.h index 3caeaa7a61..5e9f4aae0a 100644 --- a/include/deal.II/fe/fe_poly.templates.h +++ b/include/deal.II/fe/fe_poly.templates.h @@ -199,8 +199,8 @@ FE_Poly::requires_update_flags (const UpdateFlags f | update_hessians | update_gradients | update_jacobian_pushed_forward_grads | update_jacobian_pushed_forward_2nd_derivatives; - if (flags & update_cell_normal_vectors) - out |= update_cell_normal_vectors | update_JxW_values; + if (flags & update_normal_vectors) + out |= update_normal_vectors | update_JxW_values; return out; } diff --git a/include/deal.II/fe/fe_poly_face.templates.h b/include/deal.II/fe/fe_poly_face.templates.h index 6b9a74e8e3..d2f1b776f7 100644 --- a/include/deal.II/fe/fe_poly_face.templates.h +++ b/include/deal.II/fe/fe_poly_face.templates.h @@ -58,8 +58,8 @@ FE_PolyFace::requires_update_flags (const UpdateFla out |= update_gradients | update_covariant_transformation; if (flags & update_hessians) out |= update_hessians | update_covariant_transformation; - if (flags & update_cell_normal_vectors) - out |= update_cell_normal_vectors | update_JxW_values; + if (flags & update_normal_vectors) + out |= update_normal_vectors | update_JxW_values; return out; } diff --git a/source/fe/fe_face.cc b/source/fe/fe_face.cc index b0662792ff..b77a6ff842 100644 --- a/source/fe/fe_face.cc +++ b/source/fe/fe_face.cc @@ -449,8 +449,8 @@ FE_FaceQ<1,spacedim>::requires_update_flags (const UpdateFlags flags) const out |= update_gradients | update_covariant_transformation; if (flags & update_hessians) out |= update_hessians | update_covariant_transformation; - if (flags & update_cell_normal_vectors) - out |= update_cell_normal_vectors | update_JxW_values; + if (flags & update_normal_vectors) + out |= update_normal_vectors | update_JxW_values; return out; } -- 2.39.5