From: wolf Date: Fri, 2 May 2003 23:16:12 +0000 (+0000) Subject: Remove on main branch. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=951f49a0b2f29d195011bec2a740ea81011245b8;p=dealii-svn.git Remove on main branch. git-svn-id: https://svn.dealii.org/trunk@7558 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/fe/rt_3.cc b/tests/fe/rt_3.cc deleted file mode 100644 index 98676319ce..0000000000 --- a/tests/fe/rt_3.cc +++ /dev/null @@ -1,64 +0,0 @@ -//---------------------------- rt_3.cc --------------------------- -// $Id$ -// Version: $Name$ -// -// Copyright (C) 2003 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. -// -//---------------------------- rt_3.cc --------------------------- - - -// Just output the constraint matrices of the RT element - -#include -#include - -#include -#include - -#define PRECISION 5 - - - -template -void -test(const unsigned int degree) -{ - deallog << "FE_RaviartThomas<" << dim << "> (" << degree << ")" - << std::endl; - - FE_RaviartThomas fe_rt(degree); - const FullMatrix & constraints = fe_rt.constraints(); - - for (unsigned int i=0; i(degree); - - return 0; -} - - - diff --git a/tests/fe/rt_4.cc b/tests/fe/rt_4.cc deleted file mode 100644 index 99fab02035..0000000000 --- a/tests/fe/rt_4.cc +++ /dev/null @@ -1,69 +0,0 @@ -//---------------------------- rt_4.cc --------------------------- -// $Id$ -// Version: $Name$ -// -// Copyright (C) 2003 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. -// -//---------------------------- rt_4.cc --------------------------- - - -// Just output the prolongation matrices of the RT element - -#include -#include - -#include -#include - -#define PRECISION 5 - - - -template -void -test(const unsigned int degree) -{ - deallog << "FE_RaviartThomas<" << dim << "> (" << degree << ")" - << std::endl; - - FE_RaviartThomas fe_rt(degree); - - for (unsigned int c=0; c::children_per_cell; ++c) - { - const FullMatrix & m = fe_rt.prolongate(c); - - for (unsigned int i=0; i(degree); -// test<3>(degree); - - return 0; -} - - -