From: David Wells
Date: Wed, 16 Sep 2015 19:39:29 +0000 (-0400)
Subject: Remove unimplemented UpdateFlags flags.
X-Git-Tag: v8.4.0-rc2~402^2
X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6f50b8f1abdf01c8853ca0cfb2f24b3790d43764;p=dealii.git
Remove unimplemented UpdateFlags flags.
These two flags showed up in commit cfb5ac8b76df in October 2007 but
were never actually implemented.
---
diff --git a/doc/news/changes.h b/doc/news/changes.h
index 6f5c18bc5e..4529210d79 100644
--- a/doc/news/changes.h
+++ b/doc/news/changes.h
@@ -38,10 +38,12 @@ inconvenience this causes.
- - Removed: The
UpdateFlags
flag
- update_support_points
has been removed. This flag was deprecated
- in 2013 and has not done anything in a long time (see the commit message for
- more information).
+ - Removed: The
UpdateFlags
flags
+ update_support_points
, update_support_jacobians
,
+ and update_support_inverse_jacobians
have been removed.
+ update_support_points
was deprecated in 2013 and has not done
+ anything in a long time (see the commit message for more information). The
+ other two appeared in 2007 and were never implemented.
(David Wells, 2015/09/16)
diff --git a/include/deal.II/fe/fe_update_flags.h b/include/deal.II/fe/fe_update_flags.h
index af074daf99..52afc20b5c 100644
--- a/include/deal.II/fe/fe_update_flags.h
+++ b/include/deal.II/fe/fe_update_flags.h
@@ -199,16 +199,6 @@ enum UpdateFlags
* Compute the volume element in each quadrature point.
*/
update_volume_elements = 0x10000,
- //! Jacobian at generalized support points
- /**
- * Update the Jacobian of the mapping in generalized support points.
- */
- update_support_jacobians = 0x40000,
- //! inverse Jacobian at generalized support points
- /**
- * Update the inverse Jacobian of the mapping in generalized support points.
- */
- update_support_inverse_jacobians = 0x80000,
/**
* Compute the derivatives of the Jacobian of the transformation pushed
* forward to the real cell coordinates.
@@ -272,8 +262,6 @@ STREAM &operator << (STREAM &s, UpdateFlags u)
if (u & update_contravariant_transformation) s << "contravariant_transformation|";
if (u & update_transformation_values) s << "transformation_values|";
if (u & update_transformation_gradients) s << "transformation_gradients|";
- if (u & update_support_jacobians) s << "support_jacobians|";
- if (u & update_support_inverse_jacobians) s << "support_inverse_jacobians|";
if (u & update_jacobian_pushed_forward_grads) s << "jacobian_pushed_forward_grads|";
if (u & update_jacobian_2nd_derivatives) s << "jacobian_2nd_derivatives|";
if (u & update_jacobian_pushed_forward_2nd_derivatives) s << "jacobian_pushed_forward_2nd_derivatives|";