const std::vector<unsigned int> &new_numbers);
/**
- * @deprecated Use
- * CompressedSparsityPattern instead of
- * initializing SparsityPattern with this
- * value, see the discussion in step-2
- * and the @ref Sparsity module.
- *
* Return the maximum number of
* degrees of freedom a degree of freedom
* in the given triangulation with the
* is also discussed in the documentation
* of the module on @ref Sparsity.
*/
- unsigned int max_couplings_between_dofs () const DEAL_II_DEPRECATED;
+ unsigned int max_couplings_between_dofs () const;
/**
- * @deprecated Use
- * CompressedSparsityPattern
- * instead of initializing
- * SparsityPattern with this
- * value.
- *
* Return the number of degrees of freedom
* located on the boundary another dof on
* the boundary can couple with.
* The number is the same as for
* max_couplings_between_dofs() in one
* dimension less.
+ *
+ * @note The same applies to this function as to max_couplings_per_dofs()
+ * as regards the performance of this function. Think about one of the
+ * dynamic sparsity pattern classes instead (see @ref Sparsity).
*/
- unsigned int max_couplings_between_boundary_dofs () const DEAL_II_DEPRECATED;
+ unsigned int max_couplings_between_boundary_dofs () const;
/*--------------------------------------*/
* matrix also.
*
* As for
- * DoFHandler::max_couplings_between_dofs(),
+ * ::DoFHandler::max_couplings_between_dofs(),
* the result of this function is often
* not very accurate for 3d and/or high
* polynomial degrees. The consequences
* The number is the same as for
* @p max_coupling_between_dofs in one
* dimension less.
+ *
+ * @note The same applies to this function as to max_couplings_per_dofs()
+ * as regards the performance of this function. Think about one of the
+ * dynamic sparsity pattern classes instead (see @ref Sparsity).
*/
unsigned int max_couplings_between_boundary_dofs () const;