- GridOutFlags::XFig::level_color.
- class BlockList.
- MGConstrainedDoFs::non_refinement_edge_index
+ - MGConstrainedDoFs::at_refinement_edge_boundary
</ol>
<li> Removed: The config.h file no longer exports HAVE_* definitions.
bool at_refinement_edge (const unsigned int level,
const types::global_dof_index index) const;
- /**
- * @deprecated Use is_boundary_index() instead. The logic behind this
- * function here is unclear and for practical purposes, the other is needed.
- *
- * Determine whether a dof index is subject to a boundary constraint.
- */
- bool at_refinement_edge_boundary (const unsigned int level,
- const types::global_dof_index index) const DEAL_II_DEPRECATED;
-
/**
* Return the indices of dofs for each level that are subject to boundary
* constraints.
}
-inline
-bool
-MGConstrainedDoFs::at_refinement_edge_boundary (const unsigned int level,
- const types::global_dof_index index) const
-{
- return is_boundary_index(level, index);
-}
-
inline
const std::vector<std::set<types::global_dof_index> > &
MGConstrainedDoFs::get_boundary_indices () const