diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2013-03-21 18:19:53 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2013-03-21 18:19:53 (GMT) |
commit | 535456397c2886ecaffddbd6471f6f2e50125c1d (patch) | |
tree | 71193913483466a015d8aee5ced97b043dcf9c83 | |
parent | 0596de6267e6917057df2ebe2f7e524a1a9e6773 (diff) | |
download | hdf5-535456397c2886ecaffddbd6471f6f2e50125c1d.zip hdf5-535456397c2886ecaffddbd6471f6f2e50125c1d.tar.gz hdf5-535456397c2886ecaffddbd6471f6f2e50125c1d.tar.bz2 |
[svn-r23415] Description:
Avoid using fpclassify() for detecting zero/non-zero values.
Tested on:
Mac OSX/64 10.8.3 (amazon) w/debug
-rw-r--r-- | tools/lib/h5diff_array.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/lib/h5diff_array.c b/tools/lib/h5diff_array.c index 878f459..528fc40 100644 --- a/tools/lib/h5diff_array.c +++ b/tools/lib/h5diff_array.c @@ -106,9 +106,9 @@ static hbool_t not_comparable; per = -1; \ not_comparable = FALSE; \ both_zero = FALSE; \ - if(FP_ZERO == fpclassify(A) && FP_ZERO == fpclassify(B)) \ + if(0 == (A) && 0 == (B)) \ both_zero = TRUE; \ - if(FP_ZERO != fpclassify(A)) \ + if(0 != (A)) \ per = (double)ABS((double)(B - A) / (double)A); \ else \ not_comparable = TRUE; \ |