From b9c30c0629d5039c9f7ecc5fe0a96d4159acbfed Mon Sep 17 00:00:00 2001 From: wolf Date: Thu, 17 Oct 2002 16:28:41 +0000 Subject: [PATCH] Add obviously forgotten function. git-svn-id: https://svn.dealii.org/trunk@6676 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/fe/fe_dgq.cc | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/deal.II/deal.II/source/fe/fe_dgq.cc b/deal.II/deal.II/source/fe/fe_dgq.cc index 1702fbb5c6..3715bf68a3 100644 --- a/deal.II/deal.II/source/fe/fe_dgq.cc +++ b/deal.II/deal.II/source/fe/fe_dgq.cc @@ -659,6 +659,16 @@ FE_DGQ::base_element (const unsigned int index) const +template +unsigned int +FE_DGQ::element_multiplicity (const unsigned int index) const +{ + Assert (index==0, ExcIndexRange(index, 0, 1)); + return 1; +}; + + + template bool FE_DGQ::has_support_on_face (const unsigned int shape_index, -- 2.39.5