--- /dev/null
+//---------------------------- hp_constraints_rt_01.cc ---------------------------
+// $Id$
+// Version: $Name$
+//
+// Copyright (C) 2006, 2007 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.
+//
+//---------------------------- hp_constraints_rt_01.cc ---------------------------
+
+
+// check that computation of hp constraints works for RT elements correctly
+
+char logname[] = "hp_constraints_rt_01/output";
+
+
+#include "../hp/hp_constraints_common.h"
+#include <fe/fe_raviart_thomas.h>
+
+
+template <int dim>
+void test ()
+{
+ if (dim == 1)
+ return;
+
+ hp::FECollection<dim> fe;
+ for (unsigned int i=1; i<4; ++i)
+ fe.push_back (FE_RaviartThomas<dim>(i));
+ test_no_hanging_nodes (fe);
+}
--- /dev/null
+//---------------------------- hp_constraints_rt_02.cc ---------------------------
+// $Id$
+// Version: $Name$
+//
+// Copyright (C) 2006, 2007 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.
+//
+//---------------------------- hp_constraints_rt_02.cc ---------------------------
+
+
+// check that computation of hp constraints works for RT elements correctly
+
+char logname[] = "hp_constraints_rt_02/output";
+
+
+#include "../hp/hp_constraints_common.h"
+#include <fe/fe_raviart_thomas.h>
+
+
+template <int dim>
+void test ()
+{
+ if (dim == 1)
+ return;
+
+ hp::FECollection<dim> fe;
+ for (unsigned int i=1; i<4; ++i)
+ fe.push_back (FE_RaviartThomas<dim>(i));
+ test_with_hanging_nodes (fe);
+}
--- /dev/null
+//---------------------------- hp_constraints_rt_03.cc ---------------------------
+// $Id$
+// Version: $Name$
+//
+// Copyright (C) 2006, 2007 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.
+//
+//---------------------------- hp_constraints_rt_03.cc ---------------------------
+
+
+// check that computation of hp constraints works for RT elements correctly
+
+char logname[] = "hp_constraints_rt_03/output";
+
+
+#include "../hp/hp_constraints_common.h"
+#include <fe/fe_raviart_thomas.h>
+
+
+template <int dim>
+void test ()
+{
+ if (dim == 1)
+ return;
+
+ hp::FECollection<dim> fe;
+ for (unsigned int i=1; i<4; ++i)
+ fe.push_back (FE_RaviartThomas<dim>(i));
+ test_with_wrong_face_orientation (fe);
+}
--- /dev/null
+//---------------------------- hp_constraints_rt_04.cc ---------------------------
+// $Id$
+// Version: $Name$
+//
+// Copyright (C) 2006, 2007 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.
+//
+//---------------------------- hp_constraints_rt_04.cc ---------------------------
+
+
+// check that computation of hp constraints works for RT elements correctly
+
+char logname[] = "hp_constraints_rt_04/output";
+
+
+#include "../hp/hp_constraints_common.h"
+#include <fe/fe_raviart_thomas.h>
+
+
+template <int dim>
+void test ()
+{
+ if (dim == 1)
+ return;
+
+ hp::FECollection<dim> fe;
+ for (unsigned int i=1; i<4; ++i)
+ fe.push_back (FE_RaviartThomas<dim>(i));
+ test_with_2d_deformed_mesh (fe);
+}
--- /dev/null
+//---------------------------- hp_constraints_rt_05.cc ---------------------------
+// $Id$
+// Version: $Name$
+//
+// Copyright (C) 2006, 2007 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.
+//
+//---------------------------- hp_constraints_rt_05.cc ---------------------------
+
+
+// check that computation of hp constraints works for RT elements correctly
+
+char logname[] = "hp_constraints_rt_05/output";
+
+
+#include "../hp/hp_constraints_common.h"
+#include <fe/fe_raviart_thomas.h>
+
+
+template <int dim>
+void test ()
+{
+ if (dim == 1)
+ return;
+
+ hp::FECollection<dim> fe;
+ for (unsigned int i=1; i<4; ++i)
+ fe.push_back (FE_RaviartThomas<dim>(i));
+ test_with_2d_deformed_refined_mesh (fe);
+}
--- /dev/null
+//---------------------------- hp_constraints_rt_06.cc ---------------------------
+// $Id$
+// Version: $Name$
+//
+// Copyright (C) 2006, 2007 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.
+//
+//---------------------------- hp_constraints_rt_06.cc ---------------------------
+
+
+// check that computation of hp constraints works for RT elements correctly
+
+char logname[] = "hp_constraints_rt_06/output";
+
+
+#include "../hp/hp_constraints_common.h"
+#include <fe/fe_raviart_thomas.h>
+
+
+template <int dim>
+void test ()
+{
+ if (dim == 1)
+ return;
+
+ hp::FECollection<dim> fe;
+ std::vector<unsigned int> degrees;
+ for (unsigned int i=1; i<7-dim; ++i)
+ {
+ fe.push_back (FE_RaviartThomas<dim>(i));
+ degrees.push_back (i);
+ }
+
+ test_interpolation (fe, degrees);
+}