aboutsummaryrefslogtreecommitdiff
path: root/Carpet/Carpet/src/Recompose.cc
diff options
context:
space:
mode:
authorknarf <knarf@topf.wg>2010-08-24 11:12:14 -0400
committerBarry Wardell <barry.wardell@gmail.com>2011-12-14 18:21:10 +0000
commitc3f5874a3f8cadc4cd98d7889642ef30cb053fa6 (patch)
treeb989ea8f49c2a2da8e1737f7fc8f805f3d0278ef /Carpet/Carpet/src/Recompose.cc
parentd3d28d5ce4b2896d09b92253a23fda46ee3bdd73 (diff)
let min_points_per_proc==-1 be ==0 in the future, meaning the minimum number of gp per processor is 0
Diffstat (limited to 'Carpet/Carpet/src/Recompose.cc')
-rw-r--r--Carpet/Carpet/src/Recompose.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/Carpet/Carpet/src/Recompose.cc b/Carpet/Carpet/src/Recompose.cc
index 5ff48751c..bd71f3945 100644
--- a/Carpet/Carpet/src/Recompose.cc
+++ b/Carpet/Carpet/src/Recompose.cc
@@ -1625,7 +1625,7 @@ namespace Carpet {
// Deactivate some processors if there are too many
int nprocs;
- if (min_points_per_proc < 0) {
+ if (min_points_per_proc == 0) {
nprocs = real_nprocs;
} else {
CCTK_REAL mycost = 0;