From: bangerth Date: Mon, 14 Dec 2009 21:56:26 +0000 (+0000) Subject: Also instantiate members of DoFRenumbering::boost for hp::DoFHandler. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=248b8a69a4733eb794ad99f276c4e4ff9246fdb1;p=dealii-svn.git Also instantiate members of DoFRenumbering::boost for hp::DoFHandler. git-svn-id: https://svn.dealii.org/trunk@20245 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/dofs/dof_renumbering.cc b/deal.II/deal.II/source/dofs/dof_renumbering.cc index 118e272d2c..58bf0d7ba1 100644 --- a/deal.II/deal.II/source/dofs/dof_renumbering.cc +++ b/deal.II/deal.II/source/dofs/dof_renumbering.cc @@ -1536,6 +1536,34 @@ namespace DoFRenumbering void compute_minimum_degree (std::vector &, const DoFHandler &, bool, bool); + + + template + void + Cuthill_McKee (hp::DoFHandler &, bool, bool); + + template + void + compute_Cuthill_McKee (std::vector &, + const hp::DoFHandler &, bool, bool); + + template + void + king_ordering (hp::DoFHandler &, bool, bool); + + template + void + compute_king_ordering (std::vector &, + const hp::DoFHandler &, bool, bool); + + template + void + minimum_degree (hp::DoFHandler &, bool, bool); + + template + void + compute_minimum_degree (std::vector &, + const hp::DoFHandler &, bool, bool); } diff --git a/deal.II/doc/news/changes.h b/deal.II/doc/news/changes.h index fed69965be..7c73f506c2 100644 --- a/deal.II/doc/news/changes.h +++ b/deal.II/doc/news/changes.h @@ -533,11 +533,20 @@ inconvenience this causes.
  1. - Fixed: The functions DoFTools::count_dofs_per_component and DoFTools::extract_dofs - produced wrong results for elements that consist of two or more nested FESystems. - Moreoever, a bug in DoFTools::extract_constant_modes has been corrected and - DoFTools::distribute_cell_to_dof_vector now works according to the documentation, - namely leaving unselected components in the result vector unchanged, instead of + New: The functions in namespace DoFRenumbering::boost are now also compiled for + hp::DoFHandler arguments. +
    + (WB 2009/12/14) +

    +
  2. + +
  3. +

    + Fixed: The functions DoFTools::count_dofs_per_component and DoFTools::extract_dofs + produced wrong results for elements that consist of two or more nested FESystems. + Moreoever, a bug in DoFTools::extract_constant_modes has been corrected and + DoFTools::distribute_cell_to_dof_vector now works according to the documentation, + namely leaving unselected components in the result vector unchanged, instead of setting these to zero as was done before.
    (Martin Kronbichler 2009/12/14)