aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetRegrid/src/automatic.cc
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@cct.lsu.edu>2006-06-13 17:17:00 +0000
committerErik Schnetter <schnetter@cct.lsu.edu>2006-06-13 17:17:00 +0000
commitd5a022a661e2099790a88832318dd6b9aa194193 (patch)
tree18d34b6c52b8845384947eef93c48e335a3ae233 /Carpet/CarpetRegrid/src/automatic.cc
parentdad0713a086ae9710d85fbcbd8dde1fcbbfb0102 (diff)
CarpetRegrid: Explicitly convert from/to CCTK_INT and from/to CCTK_REAL
Explicitly convert between int and CCTK_INT, and between double and CCTK_REAL, where necessary. darcs-hash:20060613171732-dae7b-87079cbe961564e3e247bf3bdc3d402cbf42a773.gz
Diffstat (limited to 'Carpet/CarpetRegrid/src/automatic.cc')
-rw-r--r--Carpet/CarpetRegrid/src/automatic.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/Carpet/CarpetRegrid/src/automatic.cc b/Carpet/CarpetRegrid/src/automatic.cc
index f2e9af76b..18079de90 100644
--- a/Carpet/CarpetRegrid/src/automatic.cc
+++ b/Carpet/CarpetRegrid/src/automatic.cc
@@ -60,7 +60,7 @@ namespace CarpetRegrid {
vector<ibbox> bbs;
gh::cbnds obs;
Automatic_OneLevel
- (cctkGH, hh, reflevel, min(reflevels+1, refinement_levels),
+ (cctkGH, hh, reflevel, min(reflevels+1, (int)refinement_levels),
errorgf, bbs, obs);
// make multiprocessor aware
@@ -214,7 +214,8 @@ namespace CarpetRegrid {
if (cnt == 0) {
// Don't refine
- } else if (any (reffact*width < 2*minwidth) or fraction >= minfraction) {
+ } else if (any (reffact*width < (int)(2*minwidth))
+ or fraction >= minfraction) {
// Refine the whole region
const ivect lo(region.lower());
const ivect up(region.upper());