From 718bcbbeb0a88197fdd4ddb1e0a935578af3fcea Mon Sep 17 00:00:00 2001 From: Oliver Sander <sander@igpm.rwth-aachen.de> Date: Mon, 6 Jun 2011 12:44:56 +0000 Subject: [PATCH] remove the field 'globalIsometricCoordinates'. It is not used after all. [[Imported from SVN: r7374]] --- dune/gfe/localgeodesicfestiffness.hh | 4 ---- dune/gfe/realtuple.hh | 3 --- dune/gfe/rigidbodymotion.hh | 3 --- dune/gfe/rotation.hh | 6 ------ dune/gfe/unitvector.hh | 3 --- 5 files changed, 19 deletions(-) diff --git a/dune/gfe/localgeodesicfestiffness.hh b/dune/gfe/localgeodesicfestiffness.hh index ad1fa227..36c60d71 100644 --- a/dune/gfe/localgeodesicfestiffness.hh +++ b/dune/gfe/localgeodesicfestiffness.hh @@ -157,8 +157,6 @@ public: //! Each block is x, y, theta in 2d, T (R^3 \times SO(3)) in 3d enum { blocksize = TargetSpace::TangentVector::size }; - static const bool globalIsometricCoordinates = TargetSpace::globalIsometricCoordinates; - /** \brief Assemble the local stiffness matrix at the current position This default implementation used finite-difference approximations to compute the second derivatives @@ -379,8 +377,6 @@ public: //! Each block is x, y, theta in 2d, T (R^3 \times SO(3)) in 3d enum { embeddedBlocksize = TargetSpace::EmbeddedTangentVector::size }; - static const bool globalIsometricCoordinates = TargetSpace::globalIsometricCoordinates; - /** \brief Assemble the local stiffness matrix at the current position This default implementation used finite-difference approximations to compute the second derivatives diff --git a/dune/gfe/realtuple.hh b/dune/gfe/realtuple.hh index e09f84be..40688fe3 100644 --- a/dune/gfe/realtuple.hh +++ b/dune/gfe/realtuple.hh @@ -18,9 +18,6 @@ public: typedef double ctype; - /** \brief Global coordinates wrt an isometric embedding function are available */ - static const bool globalIsometricCoordinates = true; - /** \brief The type used for global coordinates */ typedef Dune::FieldVector<double,N> CoordinateType; diff --git a/dune/gfe/rigidbodymotion.hh b/dune/gfe/rigidbodymotion.hh index 34576b64..af9f4ab8 100644 --- a/dune/gfe/rigidbodymotion.hh +++ b/dune/gfe/rigidbodymotion.hh @@ -8,9 +8,6 @@ template <int dim, class T=double> struct RigidBodyMotion { - /** \brief Global coordinates wrt an isometric embedding function are available */ - static const bool globalIsometricCoordinates = Rotation<dim,T>::globalIsometricCoordinates; - /** \brief Type of an infinitesimal rigid body motion */ typedef Dune::FieldVector<T, dim + Rotation<dim,T>::TangentVector::size> TangentVector; diff --git a/dune/gfe/rotation.hh b/dune/gfe/rotation.hh index baf4ad0a..443bb28c 100644 --- a/dune/gfe/rotation.hh +++ b/dune/gfe/rotation.hh @@ -31,9 +31,6 @@ public: /** \brief The type used for coordinates */ typedef T ctype; - /** \brief Global coordinates wrt an isometric embedding function are available */ - static const bool globalIsometricCoordinates = false; - /** \brief Member of the corresponding Lie algebra. This really is a skew-symmetric matrix */ typedef Dune::FieldVector<T,1> TangentVector; @@ -154,9 +151,6 @@ public: /** \brief The type used for coordinates */ typedef T ctype; - /** \brief Global coordinates wrt an isometric embedding function are available */ - static const bool globalIsometricCoordinates = true; - /** \brief The type used for global coordinates */ typedef Dune::FieldVector<T,4> CoordinateType; diff --git a/dune/gfe/unitvector.hh b/dune/gfe/unitvector.hh index c3698ee5..0d748d05 100644 --- a/dune/gfe/unitvector.hh +++ b/dune/gfe/unitvector.hh @@ -58,9 +58,6 @@ public: /** \brief The type used for coordinates */ typedef double ctype; - /** \brief Global coordinates wrt an isometric embedding function are available */ - static const bool globalIsometricCoordinates = true; - /** \brief The type used for global coordinates */ typedef Dune::FieldVector<double,N> CoordinateType; -- GitLab