From 6a414c9c53b44134e6e8ae330c84644a1d3707fd Mon Sep 17 00:00:00 2001 From: Nicolas Aunai Date: Fri, 27 Jun 2025 09:31:19 +0200 Subject: [PATCH] remove source mask growth condition --- source/SAMRAI/xfer/RefineSchedule.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/source/SAMRAI/xfer/RefineSchedule.cpp b/source/SAMRAI/xfer/RefineSchedule.cpp index dffe9304c..37cb09723 100644 --- a/source/SAMRAI/xfer/RefineSchedule.cpp +++ b/source/SAMRAI/xfer/RefineSchedule.cpp @@ -4738,14 +4738,11 @@ RefineSchedule::constructScheduleTransactions( hier::Box test_mask(dst_fill_box * transformed_src_box); if (test_mask.empty() && dst_pdf->dataLivesOnPatchBorder()) { - if ((dst_gcw == constant_zero_intvector) || - (dst_box.isSpatiallyEqual(fill_box))) { test_mask = dst_fill_box; test_mask.grow(constant_one_intvector); test_mask = test_mask * transformed_src_box; - } } src_mask = test_mask;