diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-01-10 19:15:16 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-01-10 19:15:16 (GMT) |
commit | ba14f838467f787fd4d42185a7e65fc529f84af8 (patch) | |
tree | 126171e83360b5c261472e66125551edfa1177d7 /tools/testfiles/tdset-3s.ddl | |
parent | 56407cde0eb97b44d2e2fccf1c67ea585811f7f1 (diff) | |
download | hdf5-ba14f838467f787fd4d42185a7e65fc529f84af8.zip hdf5-ba14f838467f787fd4d42185a7e65fc529f84af8.tar.gz hdf5-ba14f838467f787fd4d42185a7e65fc529f84af8.tar.bz2 |
[svn-r13134]
New version of the function h5tools_dump_simple_subset, to display subsetting. The new algorithm is:
Introduced an outer loop for cases where dimensionality is greater
than 2D. In each iteration a 2D block is displayed by rows in a inner
loop. The remainning slower dimensions above the first 2 are incremented
one at a time in the outer loop
Note: when blocks are introduced, the display is not correct. This is a bug that requires an improvement of the algorithm.
Diffstat (limited to 'tools/testfiles/tdset-3s.ddl')
-rw-r--r-- | tools/testfiles/tdset-3s.ddl | 37 |
1 files changed, 18 insertions, 19 deletions
diff --git a/tools/testfiles/tdset-3s.ddl b/tools/testfiles/tdset-3s.ddl index ae9f5f2..d8deced 100644 --- a/tools/testfiles/tdset-3s.ddl +++ b/tools/testfiles/tdset-3s.ddl @@ -11,25 +11,24 @@ DATASET "/dset1" { COUNT ( 9, 19 ); BLOCK ( 1, 1 ); DATA { - (1,1): 2, 3, 4, 5, 6, 7, 8, 9, 10, - (1,2): 3, 4, 5, 6, 7, 8, 9, 10, 11, - (1,3): 4, 5, 6, 7, 8, 9, 10, 11, 12, - (1,4): 5, 6, 7, 8, 9, 10, 11, 12, 13, - (1,5): 6, 7, 8, 9, 10, 11, 12, 13, 14, - (1,6): 7, 8, 9, 10, 11, 12, 13, 14, 15, - (1,7): 8, 9, 10, 11, 12, 13, 14, 15, 16, - (1,8): 9, 10, 11, 12, 13, 14, 15, 16, 17, - (1,9): 10, 11, 12, 13, 14, 15, 16, 17, 18, - (1,10): 11, 12, 13, 14, 15, 16, 17, 18, 19, - (1,11): 12, 13, 14, 15, 16, 17, 18, 19, 20, - (1,12): 13, 14, 15, 16, 17, 18, 19, 20, 21, - (1,13): 14, 15, 16, 17, 18, 19, 20, 21, 22, - (1,14): 15, 16, 17, 18, 19, 20, 21, 22, 23, - (1,15): 16, 17, 18, 19, 20, 21, 22, 23, 24, - (1,16): 17, 18, 19, 20, 21, 22, 23, 24, 25, - (1,17): 18, 19, 20, 21, 22, 23, 24, 25, 26, - (1,18): 19, 20, 21, 22, 23, 24, 25, 26, 27, - (1,19): 20, 21, 22, 23, 24, 25, 26, 27, 28 + (1,1): 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, + (1,19): 20, + (2,1): 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, + (2,18): 20, 21, + (3,1): 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, + (3,18): 21, 22, + (4,1): 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, + (4,18): 22, 23, + (5,1): 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, + (5,18): 23, 24, + (6,1): 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, + (6,17): 23, 24, 25, + (7,1): 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, + (7,17): 24, 25, 26, + (8,1): 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, + (8,17): 25, 26, 27, + (9,1): 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, + (9,17): 26, 27, 28 } } } |