aboutsummaryrefslogtreecommitdiff
path: root/src/OutputInfo.c
diff options
context:
space:
mode:
authortradke <tradke@b589c3ab-70e8-4b4d-a09f-cba2dd200880>2002-04-15 15:06:18 +0000
committertradke <tradke@b589c3ab-70e8-4b4d-a09f-cba2dd200880>2002-04-15 15:06:18 +0000
commitfcc32346de7a793060209a0fe959b366a3db3183 (patch)
tree45312daeab875ef2c4d81c5885a121e4d50098dd /src/OutputInfo.c
parenta335af5b0eebc54d33d027e3c470ec656518a561 (diff)
Get the reduction result for Info output on every processor (because every
processor does print it). This fixes a problem with uninitialized memory on the Alphas. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@121 b589c3ab-70e8-4b4d-a09f-cba2dd200880
Diffstat (limited to 'src/OutputInfo.c')
-rw-r--r--src/OutputInfo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/OutputInfo.c b/src/OutputInfo.c
index 29580cb..16676e8 100644
--- a/src/OutputInfo.c
+++ b/src/OutputInfo.c
@@ -30,9 +30,9 @@ CCTK_FILEVERSION(CactusBase_IOBasic_OutputInfo_c)
/* the number at which to switch from decimal to exponential notation */
#define DECIMAL_PRECISION 1.0e-8
#define DECIMAL_TOOBIG 1.0e+8
-#define USE_DECIMAL_NOTATION(x) ((fabs (x) > DECIMAL_PRECISION) || \
+#define USE_DECIMAL_NOTATION(x) ((fabs ((double) x) > DECIMAL_PRECISION) || \
((x) == 0.0) || \
- (fabs(x) < DECIMAL_TOOBIG))
+ (fabs ((double) x) < DECIMAL_TOOBIG))
#define PRINT_FORMATTED_REDUCTION_VALUE(reduction) \
if (reduction->is_valid) \
{ \