Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix compilation of MGTransferGlobalCoarsening::interpolate_to_mg() #12879

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/deal.II/multigrid/mg_transfer_global_coarsening.h
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ class MGTransferGlobalCoarsening : public dealii::MGTransferBase<VectorType>
* If an inner vector of @p dst is empty or has incorrect locally owned size,
* it will be resized to locally relevant degrees of freedom on each level.
*/
template <class InVector, int spacedim>
template <class InVector>
void
interpolate_to_mg(MGLevelObject<VectorType> &dst, const InVector &src) const;

Expand Down Expand Up @@ -666,7 +666,7 @@ MGTransferGlobalCoarsening<dim, VectorType>::copy_from_mg(


template <int dim, typename VectorType>
template <class InVector, int spacedim>
template <class InVector>
void
MGTransferGlobalCoarsening<dim, VectorType>::interpolate_to_mg(
MGLevelObject<VectorType> &dst,
Expand Down