From: Wolfgang Bangerth Date: Thu, 12 Apr 2001 06:34:41 +0000 (+0000) Subject: Slight output change, and change the degree of FEs as Q3 elements are X-Git-Tag: v8.0.0~19342 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e342a3a0327d99ce7dd1911ee61d70b790a8a6f4;p=dealii.git 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 --- 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);