From 85a812c678fdcab9ac26144b4c8272e6a1d78417 Mon Sep 17 00:00:00 2001 From: Guido Kanschat Date: Tue, 25 May 2004 12:20:02 +0000 Subject: [PATCH] continuing on block wise assembling git-svn-id: https://svn.dealii.org/trunk@9318 0785d39b-7218-0410-832d-ea1e28bc413d --- .../deal.II/source/fe/fe_values.instance.h | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 deal.II/deal.II/source/fe/fe_values.instance.h 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; -- 2.39.5