From 4f7c9b4368077359956dd622fdc39caaad244f8c Mon Sep 17 00:00:00 2001 From: Marco Feder Date: Fri, 14 Jul 2023 15:38:28 +0200 Subject: [PATCH] Allow ArborX to be used also when spacedim==1 --- source/grid/grid_tools.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/grid/grid_tools.cc b/source/grid/grid_tools.cc index 1008a91af4..8c3c33dca3 100644 --- a/source/grid/grid_tools.cc +++ b/source/grid/grid_tools.cc @@ -5908,8 +5908,7 @@ namespace GridTools ranks_and_indices.reserve(entities.size()); #if defined(DEAL_II_WITH_ARBORX) - // ArborXWrappers don't support spacedim==1 - static constexpr bool use_arborx = spacedim != 1; + static constexpr bool use_arborx = true; #else static constexpr bool use_arborx = false; #endif -- 2.39.5