From: Peter Munch Date: Mon, 29 Jun 2020 07:31:28 +0000 (+0200) Subject: Remove DoFHandlerType from sparse_matrix_collection.h X-Git-Tag: v9.3.0-rc1~1349^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7caa0d597b033361bcfdebe9c364802c1b3371b8;p=dealii.git Remove DoFHandlerType from sparse_matrix_collection.h --- 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());