<h3>Specific improvements</h3>
<ol>
+ <li> Fixed: Some versions of DoFTools::extract_boundary_dofs() were
+ not instantiated for some combinations of arguments. This could lead
+ to missing symbol errors during linking of applications on some
+ platforms and with some compiler versions. This is now
+ fixed.
+ <br>
+ (Wolfgang Bangerth, 2014/07/04)
+ </li>
+
<li> Fixed: GridGenerator::merge_triangulations produced sometimes invalid
orientations of faces. This is now fixed.
<br>
const ComponentMask &,
std::vector<bool> &,
const std::set<types::boundary_id> &);
+
template
void
DoFTools::extract_boundary_dofs<hp::DoFHandler<deal_II_dimension> >
std::vector<bool> &,
const std::set<types::boundary_id> &);
+template
+void
+DoFTools::extract_boundary_dofs<DoFHandler<deal_II_dimension> >
+(const DoFHandler<deal_II_dimension> &,
+ const ComponentMask &,
+ IndexSet &,
+ const std::set<types::boundary_id> &);
+
+template
+void
+DoFTools::extract_boundary_dofs<hp::DoFHandler<deal_II_dimension> >
+(const hp::DoFHandler<deal_II_dimension> &,
+ const ComponentMask &,
+ IndexSet &,
+ const std::set<types::boundary_id> &);
+
template
void
DoFTools::extract_dofs_with_support_on_boundary<DoFHandler<deal_II_dimension> >
const ComponentMask &,
std::vector<bool> &,
const std::set<types::boundary_id> &);
+
+template
+void
+DoFTools::extract_boundary_dofs<DoFHandler<deal_II_dimension,deal_II_dimension+1> >
+ (const DoFHandler<deal_II_dimension,deal_II_dimension+1> &,
+ const ComponentMask &,
+ IndexSet &,
+ const std::set<types::boundary_id> &);
+
template
unsigned int
DoFTools::count_dofs_with_subdomain_association<DoFHandler<deal_II_dimension,deal_II_dimension+1> >
(const DoFHandler<deal_II_dimension,deal_II_dimension+1> &,
const types::subdomain_id);
+
template
IndexSet
DoFTools::dof_indices_with_subdomain_association<DoFHandler<deal_II_dimension,deal_II_dimension+1> >
std::vector<bool> &,
const std::set<types::boundary_id> &);
+template
+void
+DoFTools::extract_boundary_dofs<DoFHandler<1,3> >
+ (const DoFHandler<1,3> &,
+ const ComponentMask &,
+ IndexSet &,
+ const std::set<types::boundary_id> &);
+
template
void
DoFTools::get_subdomain_association<DoFHandler<1,3> >