From: Guido Kanschat Date: Tue, 25 May 2004 12:20:02 +0000 (+0000) Subject: continuing on block wise assembling X-Git-Tag: v8.0.0~15127 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=85a812c678fdcab9ac26144b4c8272e6a1d78417;p=dealii.git continuing on block wise assembling git-svn-id: https://svn.dealii.org/trunk@9318 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/fe/fe_values.instance.h b/deal.II/deal.II/source/fe/fe_values.instance.h new file mode 100644 index 0000000000..40a9d44ba9 --- /dev/null +++ b/deal.II/deal.II/source/fe/fe_values.instance.h @@ -0,0 +1,48 @@ +//----------------------------------------------------------------------- +// $Id$ +// Version: $Name$ +// +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 by the deal.II authors +// +// This file is subject to QPL and may not be distributed +// without copyright and license information. Please refer +// to the file deal.II/doc/license.html for the text and +// further information on this license. +// +//----------------------------------------------------------------------- + +// Instantiations of functions in FEValuesBase + +// Definition of vector type macros is in fe_values.cc + + +template +void FEValuesBase::get_function_values +(const IN&, std::vector&) const; +template +void FEValuesBase::get_function_values +(const IN&, std::vector&) const; + +template +void FEValuesBase::get_function_values +(const IN&, std::vector > &) const; + +template +void FEValuesBase::get_function_values +(const IN&, std::vector > &) const; + +template +void FEValuesBase::get_function_grads +(const IN&, std::vector > &) const; + +template +void FEValuesBase::get_function_grads +(const IN&, std::vector > > &) const; + +template +void FEValuesBase::get_function_2nd_derivatives +(const IN&, std::vector > &) const; + +template +void FEValuesBase::get_function_2nd_derivatives +(const IN&, std::vector > > &) const;