From 7753d8477f81e474a2dbba23155c31c906cd5dd0 Mon Sep 17 00:00:00 2001 From: pelteret Date: Wed, 11 Sep 2013 09:45:07 +0000 Subject: [PATCH] Added DoFTools::extract_locally_*_dofs function instantiations for hp::DofHandler class git-svn-id: https://svn.dealii.org/trunk@30672 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/doc/news/changes.h | 6 ++++++ deal.II/source/dofs/dof_tools.inst.in | 17 +++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/deal.II/doc/news/changes.h b/deal.II/doc/news/changes.h index 5b39825a43..008b42c4ad 100644 --- a/deal.II/doc/news/changes.h +++ b/deal.II/doc/news/changes.h @@ -85,6 +85,12 @@ inconvenience this causes.

Specific improvements

    +
  1. + Fixed: DoFTools::extract_locally_*_dofs now instantiated for hp::DofHandler. +
    + (Jean-Paul Pelteret, 2013/09/11) +
  2. +
  3. Changed: distributed::parallel:BlockVector::operator= now allows importing of ghost values like all other vector types. Also added some new constructors diff --git a/deal.II/source/dofs/dof_tools.inst.in b/deal.II/source/dofs/dof_tools.inst.in index f4121a9d63..9309ae6bc2 100644 --- a/deal.II/source/dofs/dof_tools.inst.in +++ b/deal.II/source/dofs/dof_tools.inst.in @@ -203,18 +203,35 @@ DoFTools::extract_locally_owned_dofs > (const DoFHandler & dof_handler, IndexSet & dof_set); +template +void +DoFTools::extract_locally_owned_dofs > +(const hp::DoFHandler & dof_handler, + IndexSet & dof_set); + template void DoFTools::extract_locally_active_dofs > (const DoFHandler & dof_handler, IndexSet & dof_set); +template +void +DoFTools::extract_locally_active_dofs > +(const hp::DoFHandler & dof_handler, + IndexSet & dof_set); template void DoFTools::extract_locally_relevant_dofs > (const DoFHandler & dof_handler, IndexSet & dof_set); + +template +void +DoFTools::extract_locally_relevant_dofs > +(const hp::DoFHandler & dof_handler, + IndexSet & dof_set); template void -- 2.39.5