From 47e78a955f2a7f1f75341e760cc59100de9e9be7 Mon Sep 17 00:00:00 2001 From: Johannes Heinz <43043310+jh66637@users.noreply.github.com> Date: Thu, 23 May 2024 17:46:51 +0200 Subject: [PATCH] replace invalid unsigned ints --- include/deal.II/matrix_free/fe_remote_evaluation.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/deal.II/matrix_free/fe_remote_evaluation.h b/include/deal.II/matrix_free/fe_remote_evaluation.h index 930dd9ef17..4272efb2b4 100644 --- a/include/deal.II/matrix_free/fe_remote_evaluation.h +++ b/include/deal.II/matrix_free/fe_remote_evaluation.h @@ -1208,6 +1208,12 @@ namespace Utilities // 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); -- 2.39.5