- GridTools::create_union_triangulation.
- GridTools::extract_boundary_mesh.
- PreconditionBlock::size.
+ - MGTools::count_dofs_per_component.
<br>
This release also removes the deprecated class MGDoFHandler. The
functionality of this class had previously been incorporated into
const bool only_once = false,
std::vector<unsigned int> target_component = std::vector<unsigned int>());
- /**
- * @deprecated Wrapper for the other function with same name, introduced for
- * compatibility.
- */
- template <int dim, int spacedim>
- void
- count_dofs_per_component (const DoFHandler<dim,spacedim> &mg_dof,
- std::vector<std::vector<types::global_dof_index> > &result,
- std::vector<unsigned int> target_component) DEAL_II_DEPRECATED;
-
/**
* Generate a list of those degrees of freedom at the boundary of the domain
* that should be eliminated from the matrix because they will be
- template <int dim, int spacedim>
- void
- count_dofs_per_component (const DoFHandler<dim,spacedim> &dof_handler,
- std::vector<std::vector<types::global_dof_index> > &result,
- std::vector<unsigned int> target_component)
- {
- count_dofs_per_component (dof_handler, result,
- false, target_component);
- }
-
-
-
template <class DH>
void
count_dofs_per_block (
template void count_dofs_per_component (
const DoFHandler<deal_II_dimension>&, std::vector<std::vector<types::global_dof_index> >&,
bool, std::vector<unsigned int>);
- template void count_dofs_per_component (
- const DoFHandler<deal_II_dimension>&, std::vector<std::vector<types::global_dof_index> >&,
- std::vector<unsigned int>);
template void count_dofs_per_block (
const DoFHandler<deal_II_dimension>&, std::vector<std::vector<types::global_dof_index> >&,
std::vector<unsigned int>);