aboutsummaryrefslogtreecommitdiff
path: root/Carpet
diff options
context:
space:
mode:
authorChristian Reisswig <reisswig@tapir.caltech.edu>2012-05-13 21:11:59 -0700
committerBarry Wardell <barry.wardell@gmail.com>2012-09-11 18:23:21 +0100
commitc96d3e6e8936adb29384cfadbd57873a4c8a7bcf (patch)
tree4cdd64a50327f1f0b6a363143646c18caa9f9ed9 /Carpet
parent678f9acdd55fd4e4977b3e32e45fa5faebea4574 (diff)
CarpetLib: Fill overlap zones via prolongation during regrid.
Diffstat (limited to 'Carpet')
-rw-r--r--Carpet/CarpetLib/src/dh.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/Carpet/CarpetLib/src/dh.cc b/Carpet/CarpetLib/src/dh.cc
index d7a677fad..704ce8ee4 100644
--- a/Carpet/CarpetLib/src/dh.cc
+++ b/Carpet/CarpetLib/src/dh.cc
@@ -772,7 +772,7 @@ regrid (bool const do_init)
// Refinement prolongation must fill all active points
- ibset needrecv = box.active;
+ ibset needrecv = box.active + box.overlaps;
i2vect const stencil_size = i2vect (prolongation_stencil_size(rl));
@@ -1646,7 +1646,7 @@ regrid (bool const do_init)
full_dboxes & box = full_level.AT(c);
- ibset needrecv = box.active;
+ ibset needrecv = box.active + box.overlaps;