From e342a3a0327d99ce7dd1911ee61d70b790a8a6f4 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 12 Apr 2001 06:34:41 +0000 Subject: [PATCH] Slight output change, and change the degree of FEs as Q3 elements are not yet implemented in 3d. git-svn-id: https://svn.dealii.org/trunk@4443 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/deal.II/dof_renumbering.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/deal.II/dof_renumbering.cc b/tests/deal.II/dof_renumbering.cc index 65f4100525..66c7836dc6 100644 --- a/tests/deal.II/dof_renumbering.cc +++ b/tests/deal.II/dof_renumbering.cc @@ -41,7 +41,7 @@ print_dofs (const DoFHandler &dof) for (typename DoFHandler::active_cell_iterator cell=dof.begin_active(); cell != dof.end(); ++cell) { - deallog << "Cell " << cell << std::endl; + deallog << "Cell " << cell; cell->get_dof_indices (v); for (unsigned int i=0; i element (FE_Q(3), 2, FE_DGQ(1), 1); + FESystem element (FE_Q(2), 2, FE_DGQ(1), 1); DoFHandler dof(tr); dof.distribute_dofs(element); -- 2.39.5