From: heister Date: Thu, 7 Jun 2012 16:46:33 +0000 (+0000) Subject: added missing instantiations for DerivativeApproximation::approximate_derivative_tensor() X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a009b5f21b0d50b2f6c21be36577d1c396cee16c;p=dealii-svn.git added missing instantiations for DerivativeApproximation::approximate_derivative_tensor() git-svn-id: https://svn.dealii.org/trunk@25612 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/news/changes.h b/deal.II/doc/news/changes.h index f05035c3d3..433d9febb0 100644 --- a/deal.II/doc/news/changes.h +++ b/deal.II/doc/news/changes.h @@ -212,6 +212,11 @@ enabled due to a missing include file in file

Specific improvements

+
  • Fixed: Some instantiations for +DerivativeApproximation::approximate_derivative_tensor() were missing. +
    +(Timo Heister 2012/06/07) +
  • New: The finite element type FE_DGQArbitraryNodes is now working also in codimension one spaces.
    diff --git a/deal.II/source/numerics/derivative_approximation.inst.in b/deal.II/source/numerics/derivative_approximation.inst.in index d42c581e95..aab6f6c3f5 100644 --- a/deal.II/source/numerics/derivative_approximation.inst.in +++ b/deal.II/source/numerics/derivative_approximation.inst.in @@ -56,6 +56,39 @@ template \ void \ DerivativeApproximation:: \ approximate_derivative_tensor \ +(const Mapping & mapping, \ + const DH &dof_handler, \ + const InputVector &solution, \ + const DH::active_cell_iterator &cell,\ + Tensor<1,deal_II_dimension> &derivative, \ + const unsigned int component); \ + \ +template \ +void \ +DerivativeApproximation:: \ +approximate_derivative_tensor \ +(const Mapping & mapping, \ + const DH &dof_handler, \ + const InputVector &solution, \ + const DH::active_cell_iterator &cell,\ + Tensor<2,deal_II_dimension> &derivative, \ + const unsigned int component); \ + \ +template \ +void \ +DerivativeApproximation:: \ +approximate_derivative_tensor \ +(const Mapping & mapping, \ + const DH &dof_handler, \ + const InputVector &solution, \ + const DH::active_cell_iterator &cell,\ + Tensor<3,deal_II_dimension> &derivative, \ + const unsigned int component); \ + \ +template \ +void \ +DerivativeApproximation:: \ +approximate_derivative_tensor \ (const DH &dof_handler, \ const InputVector &solution, \ const DH::active_cell_iterator &cell,\