From 2ea9439a8c578269b2284c3865635e9ea8edd320 Mon Sep 17 00:00:00 2001 From: Guido Kanschat Date: Wed, 14 Sep 2005 09:34:11 +0000 Subject: [PATCH] Warnings in interpolate git-svn-id: https://svn.dealii.org/trunk@11415 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/fe/fe.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/deal.II/deal.II/include/fe/fe.h b/deal.II/deal.II/include/fe/fe.h index 817f1f9178..7501ada21a 100644 --- a/deal.II/deal.II/include/fe/fe.h +++ b/deal.II/deal.II/include/fe/fe.h @@ -1128,6 +1128,12 @@ class FiniteElement : public Subscriptor, * just the values in the suport * points. All other elements * must reimplement it. + * + * @warning This function will + * only be available in future + * versions. Right now, is + * implemented for a few elements + * and not tested. */ virtual void interpolate(std::vector& local_dofs, const std::vector& values) const; @@ -1145,6 +1151,12 @@ class FiniteElement : public Subscriptor, * interpolated. Maybe consider * changing your data structures * to use the next function. + * + * @warning This function will + * only be available in future + * versions. Right now, is + * implemented for a few elements + * and not tested. */ virtual void interpolate(std::vector& local_dofs, const std::vector >& values, @@ -1154,6 +1166,12 @@ class FiniteElement : public Subscriptor, * Interpolate a set of vector * values, computed in the * generalized support points. + * + * @warning This function will + * only be available in future + * versions. Right now, is + * implemented for a few elements + * and not tested. */ virtual void interpolate( std::vector& local_dofs, -- 2.39.5