diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2009-01-13 16:33:31 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2009-01-13 16:33:31 (GMT) |
commit | 108699a7a8e3fd459cf29ac1dea9a9623de9a561 (patch) | |
tree | 14c3d606767b364664c3d5ee1abe5e06614a0edd /tools/lib/h5diff.h | |
parent | 050ded21d307de35b0394614aa0962e8bca2f850 (diff) | |
download | hdf5-108699a7a8e3fd459cf29ac1dea9a9623de9a561.zip hdf5-108699a7a8e3fd459cf29ac1dea9a9623de9a561.tar.gz hdf5-108699a7a8e3fd459cf29ac1dea9a9623de9a561.tar.bz2 |
[svn-r16300] Added an option to avoid dealing with NaNs
-N, --nan Avoid NaNs detection
Note: there is no shell script run for datasets with NaN because the output is non portable (different results and NaN strings for different systems)
Tested: windows, linux
Diffstat (limited to 'tools/lib/h5diff.h')
-rw-r--r-- | tools/lib/h5diff.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/lib/h5diff.h b/tools/lib/h5diff.h index c013ba5..57d06a5 100644 --- a/tools/lib/h5diff.h +++ b/tools/lib/h5diff.h @@ -38,6 +38,7 @@ typedef struct { int cmn_objs; /* do we have comparable objects */ int not_cmp; /* are the objects comparable */ int contents; /* equal contents */ + int do_nans; /* consider Nans while diffing floats */ } diff_opt_t; |