const AffineConstraints<double> &
get_level_constraints(const unsigned int level) const;
- /**
- * Return the AffineConstraints object for a given level, containing
- * periodicity constraints (if enabled on the triangulation).
- *
- * @deprecated Use get_level_constraints instead, which has a more descriptive name.
- */
- DEAL_II_DEPRECATED
- const AffineConstraints<double> &
- get_level_constraint_matrix(const unsigned int level) const;
-
/**
* Return the user defined constraint matrix for a given level. These
* constraints are set using the function add_user_constraints() and
-inline const AffineConstraints<double> &
-MGConstrainedDoFs::get_level_constraint_matrix(const unsigned int level) const
-{
- return get_level_constraints(level);
-}
-
-
-
inline const AffineConstraints<double> &
MGConstrainedDoFs::get_user_constraint_matrix(const unsigned int level) const
{
// Print constraint matrix
deallog << " Constraint matrix:" << std::endl;
- constrained_dofs.get_level_constraint_matrix(level).print(
+ constrained_dofs.get_level_constraints(level).print(
deallog.get_file_stream());
}
}