aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetInterp2/src/fasterp.cc
diff options
context:
space:
mode:
Diffstat (limited to 'Carpet/CarpetInterp2/src/fasterp.cc')
-rw-r--r--Carpet/CarpetInterp2/src/fasterp.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/Carpet/CarpetInterp2/src/fasterp.cc b/Carpet/CarpetInterp2/src/fasterp.cc
index fc3ac8a90..3230ba751 100644
--- a/Carpet/CarpetInterp2/src/fasterp.cc
+++ b/Carpet/CarpetInterp2/src/fasterp.cc
@@ -1190,12 +1190,12 @@ namespace CarpetInterp2 {
assert (all (ipos % ext.stride() == ivect(0)));
ipos /= ext.stride();
dpos /= rvect(ext.stride());
- if (not (all (abs(dpos) <= rvect(0.5)))) {
+ if (not (all (fabs(dpos) <= rvect(0.5)))) {
cout << "fasterp.cc:659\n"
<< " dpos=" << dpos << "\n"
<< " ext=" << ext << "\n";
}
- assert (all (abs(dpos) <= rvect(0.5)));
+ assert (all (fabs(dpos) <= rvect(0.5)));
ivect const ind = ipos - ext.lower() / ext.stride();
ivect const ash = pad_shape(ext);