aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetLib/src/gdata.cc
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@cct.lsu.edu>2010-08-27 10:15:57 -0400
committerBarry Wardell <barry.wardell@gmail.com>2011-12-14 18:24:03 +0000
commitb99e929ff7d47c107d7426802c46eee13ba9a487 (patch)
treeb2a3a78f72a040b7ecf5d1b296073ae03ee41e98 /Carpet/CarpetLib/src/gdata.cc
parent56c48bcc0629b3ef609cbcab4620be4aab7aa399 (diff)
CarpetLib: Disable invalid stride consistency check (for face-centered grids)
Diffstat (limited to 'Carpet/CarpetLib/src/gdata.cc')
-rw-r--r--Carpet/CarpetLib/src/gdata.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/Carpet/CarpetLib/src/gdata.cc b/Carpet/CarpetLib/src/gdata.cc
index 4219b80c3..0d8980a39 100644
--- a/Carpet/CarpetLib/src/gdata.cc
+++ b/Carpet/CarpetLib/src/gdata.cc
@@ -137,7 +137,8 @@ transfer_from (comm_state & state,
assert (all(dstbox.lower() >= extent().lower()));
assert (all(dstbox.upper() <= extent().upper()));
assert (all(dstbox.stride() == extent().stride()));
- assert (all((dstbox.lower() - extent().lower()) % dstbox.stride() == 0));
+ // This is not satisfied for refluxing
+ // assert (all((dstbox.lower() - extent().lower()) % dstbox.stride() == 0));
}
if (is_src) {