From: Jonathan Robey Date: Thu, 1 Sep 2016 01:01:06 +0000 (-0700) Subject: Change update_cell_normal_vectors to update_normal_vectors X-Git-Tag: v8.5.0-rc1~717^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6f7dc7e93c35ead0a5f2275c9554e4d06eb49f29;p=dealii.git Change update_cell_normal_vectors to update_normal_vectors --- 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; }