From: Marco Tezzele Date: Fri, 24 Apr 2015 13:38:06 +0000 (+0200) Subject: added FE_Bernstein in tests/fe/fe_tools_01.cc X-Git-Tag: v8.3.0-rc1~214^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c4d7501a7708b446499f6008a407d35a18c950c8;p=dealii.git added FE_Bernstein in tests/fe/fe_tools_01.cc --- diff --git a/tests/fe/fe_tools_01.cc b/tests/fe/fe_tools_01.cc index e200f853d4..4de629245f 100644 --- a/tests/fe/fe_tools_01.cc +++ b/tests/fe/fe_tools_01.cc @@ -59,6 +59,7 @@ main() test_fe<2>("FE_Q<2>(2)"); test_fe<2>("FE_Q(2)"); test_fe<2>("FE_DGQ(1)"); + test_fe<2>("FE_Bernstein(2)"); test_fe<2>("FE_RaviartThomas(1)"); test_fe<2>("FE_Q(QGaussLobatto(3))"); test_fe<2>("FE_Q(QGaussLobatto(4))"); diff --git a/tests/fe/fe_tools_01.output b/tests/fe/fe_tools_01.output index 3541bf4dea..900520642f 100644 --- a/tests/fe/fe_tools_01.output +++ b/tests/fe/fe_tools_01.output @@ -17,6 +17,8 @@ DEAL::FE_Q<2>(2) DEAL:: 9 1 1 1 0 DEAL::FE_DGQ<2>(1) DEAL:: 4 0 0 4 0 +DEAL::FE_Bernstein<2>(2) +DEAL:: 9 1 1 1 0 DEAL::FE_RaviartThomas<2>(1) DEAL:: 12 0 2 4 0 DEAL::FE_Q<2>(2)