From: Martin Kronbichler Date: Fri, 24 May 2024 06:36:37 +0000 (+0200) Subject: Merge pull request #17068 from jh66637/fix_test X-Git-Tag: v9.6.0-rc1~232 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ea97cd51520aa7acc012f57a098dd1620f63ebaf;p=dealii.git Merge pull request #17068 from jh66637/fix_test Fix regression test --- ea97cd51520aa7acc012f57a098dd1620f63ebaf diff --cc include/deal.II/matrix_free/fe_remote_evaluation.h index 3ddedd344f,4272efb2b4..6546a9825a --- a/include/deal.II/matrix_free/fe_remote_evaluation.h +++ b/include/deal.II/matrix_free/fe_remote_evaluation.h @@@ -1208,9 -1208,15 +1208,15 @@@ namespace Utilitie // with the communication objects. FERemoteEvaluationCommunicator remote_communicator; + // if no quadrature size is set, an empty quadrature is considered + std::replace(global_quadrature_sizes.begin(), + global_quadrature_sizes.end(), + numbers::invalid_unsigned_int, + 0u); + remote_communicator.reinit_faces(comm_objects, face_batch_range, - global_quadrature_vector); + global_quadrature_sizes); return remote_communicator; }