From 92181a10c1076a46c1fad265b78c45c3d0b6b7fb Mon Sep 17 00:00:00 2001 From: David Wells Date: Wed, 16 Sep 2015 10:15:44 -0400 Subject: [PATCH] Remove the deprecated update_support_points flag. This flag was deprecated in 2013 and has not done anything for a long time. This flag has a rather interesting past: * Its predecessor, a boolean 'update_ansatz_points' (which predates UpdateFlags) appeared in commit f11068359c42 in April 1998. This commit only implemented the option and not any actual functionality. * Its first actual appearance was in commit e183dbbef3c1 in September 1998 as a rename of 'update_ansatz_points'. * The implementation of this flag in FEValues was removed in commit 737af606cf92 in March 2001. * The flag was removed for the first time in commit 0e03535fbf03 in September 2001. * The flag reappeared (with no corresponding functionality) in commit cfb5ac8b76df in October 2007. * The flag was marked as deprecated in commit d2b4ca622a844 in February 2013. --- doc/news/changes.h | 8 ++++++++ include/deal.II/fe/fe_update_flags.h | 5 ----- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/doc/news/changes.h b/doc/news/changes.h index 27bf926ae4..6f5c18bc5e 100644 --- a/doc/news/changes.h +++ b/doc/news/changes.h @@ -38,6 +38,14 @@ inconvenience this causes.

    +
  1. 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). +
    + (David Wells, 2015/09/16) +
  2. +
  3. Cleanup: The two argument variant of cross_product that returned the result by reference as first argument has been removed. Use the function that directly returns the result instead. diff --git a/include/deal.II/fe/fe_update_flags.h b/include/deal.II/fe/fe_update_flags.h index 305ef0ae15..af074daf99 100644 --- a/include/deal.II/fe/fe_update_flags.h +++ b/include/deal.II/fe/fe_update_flags.h @@ -199,10 +199,6 @@ enum UpdateFlags * Compute the volume element in each quadrature point. */ update_volume_elements = 0x10000, - /** - * @deprecated This flag has no effect. - */ - update_support_points = 0x20000, //! Jacobian at generalized support points /** * Update the Jacobian of the mapping in generalized support points. @@ -276,7 +272,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_points) s << "support_points|"; 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|"; -- 2.39.5