From: Timo Heister Date: Fri, 2 Aug 2024 20:24:37 +0000 (-0400) Subject: step-75: add a missing reference X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F17427%2Fhead;p=dealii.git step-75: add a missing reference --- diff --git a/examples/step-75/step-75.cc b/examples/step-75/step-75.cc index 4084aaf44a..69086cf6d7 100644 --- a/examples/step-75/step-75.cc +++ b/examples/step-75/step-75.cc @@ -637,14 +637,14 @@ namespace Step75 // particular the operators, and the transfer operator as a // MGTransferGlobalCoarsening object. template - void solve_with_gmg(SolverControl &solver_control, - const OperatorType &system_matrix, - VectorType &dst, - const VectorType &src, - const MultigridParameters &mg_data, - const hp::MappingCollection mapping_collection, - const DoFHandler &dof_handler, - const hp::QCollection &quadrature_collection) + void solve_with_gmg(SolverControl &solver_control, + const OperatorType &system_matrix, + VectorType &dst, + const VectorType &src, + const MultigridParameters &mg_data, + const hp::MappingCollection &mapping_collection, + const DoFHandler &dof_handler, + const hp::QCollection &quadrature_collection) { // Create a DoFHandler and operator for each multigrid level, // as well as, create transfer operators. To be able to