From 10b6c0900c2af1909e5e715173a40cc7ff477fed Mon Sep 17 00:00:00 2001 From: Peter Munch Date: Tue, 18 Jan 2022 20:51:24 +0100 Subject: [PATCH] Fix MF for LA::vector --- include/deal.II/matrix_free/type_traits.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/deal.II/matrix_free/type_traits.h b/include/deal.II/matrix_free/type_traits.h index bce4761ae0..d2b6170976 100644 --- a/include/deal.II/matrix_free/type_traits.h +++ b/include/deal.II/matrix_free/type_traits.h @@ -273,8 +273,9 @@ namespace internal template struct has_exchange_on_subset { - static const bool value = - has_begin::value && has_local_element::value; + static const bool value = has_begin::value && + has_local_element::value && + has_partitioners_are_compatible::value; }; // We need to have a separate declaration for static const members -- 2.39.5