From 7caa0d597b033361bcfdebe9c364802c1b3371b8 Mon Sep 17 00:00:00 2001 From: Peter Munch Date: Mon, 29 Jun 2020 09:31:28 +0200 Subject: [PATCH] Remove DoFHandlerType from sparse_matrix_collection.h --- include/deal.II/multigrid/sparse_matrix_collection.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/include/deal.II/multigrid/sparse_matrix_collection.h b/include/deal.II/multigrid/sparse_matrix_collection.h index 607c226457..4200a1f91e 100644 --- a/include/deal.II/multigrid/sparse_matrix_collection.h +++ b/include/deal.II/multigrid/sparse_matrix_collection.h @@ -44,9 +44,9 @@ namespace mg void resize(const unsigned int minlevel, const unsigned int maxlevel); - template + template void - reinit(const DoFHandlerType &dof_handler); + reinit(const DoFHandler &dof_handler); void set_zero(); @@ -83,9 +83,10 @@ namespace mg template - template + template void - SparseMatrixCollection::reinit(const DoFHandlerType &dof_handler) + SparseMatrixCollection::reinit( + const DoFHandler &dof_handler) { AssertIndexRange(sparsity.max_level(), dof_handler.get_triangulation().n_levels()); -- 2.39.5