diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-05-03 18:53:50 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-05-03 18:53:50 (GMT) |
commit | 08b55972053dec4b9c7cd5a2480355869b7c0663 (patch) | |
tree | 441b660b613b35d098611eb5493b55f2429d710f /src/H5Dprivate.h | |
parent | 1d381a91e759443cbde4620c254d658eff1e8f6f (diff) | |
download | hdf5-08b55972053dec4b9c7cd5a2480355869b7c0663.zip hdf5-08b55972053dec4b9c7cd5a2480355869b7c0663.tar.gz hdf5-08b55972053dec4b9c7cd5a2480355869b7c0663.tar.bz2 |
[svn-r8472] Purpose:
Code optimization
Description:
Eliminate the B-tree "split_ratios" as a parameter and pull it from the
DXPL instead.
Platforms tested:
Solaris 2.7 (arabica)
FreeBSD 4.9 (sleipnir) w/parallel
too minor to require h5committest
Diffstat (limited to 'src/H5Dprivate.h')
-rw-r--r-- | src/H5Dprivate.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/H5Dprivate.h b/src/H5Dprivate.h index b828c8b..e52f51c 100644 --- a/src/H5Dprivate.h +++ b/src/H5Dprivate.h @@ -91,6 +91,9 @@ #define H5D_XFER_BKGR_BUF_TYPE_SIZE sizeof(H5T_bkg_t) #define H5D_XFER_BKGR_BUF_TYPE_DEF H5T_BKG_NO /* Definitions for B-tree node splitting ratio property */ +/* (These default B-tree node splitting ratios are also used for splitting + * group's B-trees as well as chunked dataset's B-trees - QAK) + */ #define H5D_XFER_BTREE_SPLIT_RATIO_NAME "btree_split_ratio" #define H5D_XFER_BTREE_SPLIT_RATIO_SIZE sizeof(double[3]) #define H5D_XFER_BTREE_SPLIT_RATIO_DEF {0.1, 0.5, 0.9} |