// $Id$
// Version: $Name$
//
-// Copyright (C) 2003, 2004, 2005, 2010 by the deal.II authors
+// Copyright (C) 2003, 2004, 2005, 2010, 2011 by the deal.II authors
//
// This file is subject to QPL and may not be distributed
// without copyright and license information. Please refer
//--------------------- fe_q_constraints.cc --------------------------
-// This file implements a simple test procedure for the algorithm,
+// This file implements a simple test procedure for the algorithm
// which constructs the constraint matrices for FE_Q<3> elements
// of arbitrary order. After interpolating a polynomial with the
// degree of the ansatzspace, the hanging node constraints are
void refine_grid_random ();
void make_grid_and_dofs ();
- void output_grid () const;
void test ();
}
-template <int dim>
-void TestFEQConstraints<dim>::output_grid () const
-{
- std::ofstream output ("test_feq3.eps");
- GridOut grid_out;
- grid_out.write_eps (triangulation, output);
-}
-
-
template <int dim>
void TestFEQConstraints<dim>::test ()
{
void TestFEQConstraints<dim>::run ()
{
make_grid_and_dofs ();
-// output_grid ();
test ();
}