template<int dim>
-void test_projection (const Triangulation<dim>& tr,
+void test (const Triangulation<dim>& tr,
const FiniteElement<dim>& fe)
{
DoFHandler<dim> dof(tr);
for (unsigned int degree=1; degree<4; ++degree)
{
FESystem<dim> fe (FE_Q<dim>(degree), dim);
- test_projection(tr, fe);
+ test(tr, fe);
}
}
template<int dim>
-void test_projection (const Triangulation<dim>& tr,
+void test (const Triangulation<dim>& tr,
const FiniteElement<dim>& fe)
{
DoFHandler<dim> dof(tr);
FESystem<dim> fe (FE_Q<dim>(degree+1), 1,
FE_Q<dim>(degree), dim,
FE_Q<dim>(degree+1), 1);
- test_projection(tr, fe);
+ test(tr, fe);
}
}
template<int dim>
-void test_projection (const Triangulation<dim>& tr,
+void test (const Triangulation<dim>& tr,
const FiniteElement<dim>& fe)
{
DoFHandler<dim> dof(tr);
for (unsigned int degree=1; degree<4; ++degree)
{
FESystem<dim> fe (FE_Q<dim>(degree), dim);
- test_projection(tr, fe);
+ test(tr, fe);
}
}
In the beginning the Universe was created. This has made a lot of
people very angry and has been widely regarded as a bad move.
Douglas Adams