[svn-r8758] Purpose:

h5dump new feature, bug fix

Description:
added the dump of unmamed types to the file contents
fixed a bug in the type array, it was printing invalid characters with the array indices option on

Solution:

Platforms tested:
linux
AIX
solaris

Misc. update:
This commit is contained in:
Pedro Vicente Nunes 2004-06-29 12:42:09 -05:00
parent 3edde57e73
commit d4eec2cb07
44 changed files with 1430 additions and 1391 deletions

View File

@ -476,7 +476,7 @@ static void dump_data(hid_t, int, struct subset_t *, int);
static void dump_dcpl(hid_t dcpl, hid_t type_id, hid_t obj_id);
static void dump_comment(hid_t obj_id);
static void dump_fcpl(hid_t fid);
static void dump_list(hid_t fid);
static void dump_fcontents(hid_t fid);
/* XML format: same interface, alternative output */
@ -1949,11 +1949,11 @@ dump_data(hid_t obj_id, int obj_data, struct subset_t *sset, int pindex)
}
/* print the matrix indices */
/* print the matrix indices */
outputformat->pindex=pindex;
if (outputformat->pindex)
{
outputformat->idx_fmt = "(%s),";
outputformat->idx_fmt = "(%s):";
outputformat->idx_n_fmt = "%lu";
outputformat->idx_sep = ",";
outputformat->line_pre = " %s ";
@ -2544,7 +2544,7 @@ dump_fcpl(hid_t fid)
}
/*-------------------------------------------------------------------------
* Function: dump_list
* Function: dump_fcontents
*
* Purpose: prints all objects
*
@ -2556,10 +2556,32 @@ dump_fcpl(hid_t fid)
*
*-------------------------------------------------------------------------
*/
static void dump_list(hid_t fid)
static void dump_fcontents(hid_t fid)
{
hid_t did, tid, gid;
char type_name[1024];
int i;
printf("%s %s\n",FILE_CONTENTS, BEGIN);
/* special case of unamed types in root group */
if (unamedtype)
{
gid=H5Gopen(fid,"/");
for (i = 0; i < type_table->nobjs; i++)
if (!type_table->objs[i].recorded)
{
did = H5Dopen(gid, type_table->objs[i].objname);
tid = H5Dget_type(did);
sprintf(type_name, "/#"H5_PRINTF_HADDR_FMT, type_table->objs[i].objno);
H5Tclose(tid);
H5Dclose(did);
printf(" %-10s %s\n", "datatype", type_name );
}
H5Gclose(gid);
}
/* print objects in the files */
h5trav_getinfo(fid, NULL, 1);
@ -2570,6 +2592,7 @@ static void dump_list(hid_t fid)
/*-------------------------------------------------------------------------
* Function: set_output_file
*
@ -3540,7 +3563,7 @@ main(int argc, const char *argv[])
{
if (display_fi)
{
dump_list(fid);
dump_fcontents(fid);
end_obj(dump_header_format->fileend,dump_header_format->fileblockend);
goto done;
}

View File

@ -4987,15 +4987,25 @@ static void gent_fcontents(void)
assert(ret>=0);
/*-------------------------------------------------------------------------
* datatype
* datatypes
*-------------------------------------------------------------------------
*/
tid=H5Tcopy(H5T_STD_B8LE);
tid=H5Tcopy(H5T_NATIVE_INT);
ret=H5Tcommit(fid, "mytype", tid);
assert(ret>=0);
ret=H5Tclose(tid);
assert(ret>=0);
/* no name datatype */
tid=H5Tcopy(H5T_NATIVE_INT);
ret=H5Tcommit(fid, "mytype2", tid);
assert(ret>=0);
write_dset(fid,1,dims,"dsetmytype2",tid,buf);
ret=H5Gunlink(fid,"mytype2");
assert(ret>=0);
ret=H5Tclose(tid);
assert(ret>=0);
/*-------------------------------------------------------------------------
* close
*-------------------------------------------------------------------------
@ -5010,12 +5020,12 @@ static void gent_fcontents(void)
ret=H5Fclose(fid);
assert(ret>=0);
}
/*-------------------------------------------------------------------------
* Function: gent_null_space
*

View File

@ -925,8 +925,14 @@ h5tools_str_sprint(h5tools_str_t *str, const h5dump_t *info, hid_t container,
h5tools_str_append(str, "%s", "\n");
/*need to indent some more here*/
if (ctx->indent_level >= 0)
h5tools_str_append(str, "%s", OPT(info->line_pre, ""));
if (ctx->indent_level >= 0 )
{
if (info->pindex)
h5tools_str_append(str, "%s", " ");
else
h5tools_str_append(str, "%s", OPT(info->line_pre, ""));
}
for (x = 0; x < ctx->indent_level + 1; x++)
h5tools_str_append(str,"%s",OPT(info->line_indent,""));

View File

@ -24,33 +24,33 @@ GROUP "/" {
DATATYPE H5T_STD_I32BE
DATASPACE SIMPLE { ( 10, 10 ) / ( 10, 10 ) }
DATA {
(0,0), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
(1,0), 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
(2,0), 0, 2, 4, 6, 8, 10, 12, 14, 16, 18,
(3,0), 0, 3, 6, 9, 12, 15, 18, 21, 24, 27,
(4,0), 0, 4, 8, 12, 16, 20, 24, 28, 32, 36,
(5,0), 0, 5, 10, 15, 20, 25, 30, 35, 40, 45,
(6,0), 0, 6, 12, 18, 24, 30, 36, 42, 48, 54,
(7,0), 0, 7, 14, 21, 28, 35, 42, 49, 56, 63,
(8,0), 0, 8, 16, 24, 32, 40, 48, 56, 64, 72,
(9,0), 0, 9, 18, 27, 36, 45, 54, 63, 72, 81
(0,0): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
(1,0): 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
(2,0): 0, 2, 4, 6, 8, 10, 12, 14, 16, 18,
(3,0): 0, 3, 6, 9, 12, 15, 18, 21, 24, 27,
(4,0): 0, 4, 8, 12, 16, 20, 24, 28, 32, 36,
(5,0): 0, 5, 10, 15, 20, 25, 30, 35, 40, 45,
(6,0): 0, 6, 12, 18, 24, 30, 36, 42, 48, 54,
(7,0): 0, 7, 14, 21, 28, 35, 42, 49, 56, 63,
(8,0): 0, 8, 16, 24, 32, 40, 48, 56, 64, 72,
(9,0): 0, 9, 18, 27, 36, 45, 54, 63, 72, 81
}
ATTRIBUTE "attr1" {
DATATYPE H5T_STD_I8BE
DATASPACE SIMPLE { ( 27 ) / ( 27 ) }
DATA {
(0), 49, 115, 116, 32, 97, 116, 116, 114, 105, 98,
(10), 117, 116, 101, 32, 111, 102, 32, 100, 115, 101,
(20), 116, 49, 46, 49, 46, 49, 0
(0): 49, 115, 116, 32, 97, 116, 116, 114, 105, 98,
(10): 117, 116, 101, 32, 111, 102, 32, 100, 115, 101,
(20): 116, 49, 46, 49, 46, 49, 0
}
}
ATTRIBUTE "attr2" {
DATATYPE H5T_STD_I8BE
DATASPACE SIMPLE { ( 27 ) / ( 27 ) }
DATA {
(0), 50, 110, 100, 32, 97, 116, 116, 114, 105, 98,
(10), 117, 116, 101, 32, 111, 102, 32, 100, 115, 101,
(20), 116, 49, 46, 49, 46, 49, 0
(0): 50, 110, 100, 32, 97, 116, 116, 114, 105, 98,
(10): 117, 116, 101, 32, 111, 102, 32, 100, 115, 101,
(20): 116, 49, 46, 49, 46, 49, 0
}
}
}
@ -58,8 +58,8 @@ GROUP "/" {
DATATYPE H5T_STD_I32BE
DATASPACE SIMPLE { ( 20 ) / ( 20 ) }
DATA {
(0), 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
(19), 19
(0): 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
(19): 19
}
}
}
@ -76,16 +76,16 @@ GROUP "/" {
DATATYPE H5T_IEEE_F32BE
DATASPACE SIMPLE { ( 10 ) / ( 10 ) }
DATA {
(0), 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9
(0): 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9
}
}
DATASET "dset2.2" {
DATATYPE H5T_IEEE_F32BE
DATASPACE SIMPLE { ( 3, 5 ) / ( 3, 5 ) }
DATA {
(0,0), 0, 0.1, 0.2, 0.3, 0.4,
(1,0), 0, 0.2, 0.4, 0.6, 0.8,
(2,0), 0, 0.3, 0.6, 0.9, 1.2
(0,0): 0, 0.1, 0.2, 0.3, 0.4,
(1,0): 0, 0.2, 0.4, 0.6, 0.8,
(2,0): 0, 0.3, 0.6, 0.9, 1.2
}
}
}

View File

@ -6,7 +6,7 @@ DATASET "/g2/dset2.1" {
DATATYPE H5T_IEEE_F32BE
DATASPACE SIMPLE { ( 10 ) / ( 10 ) }
DATA {
(0), 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9
(0): 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9
}
}
SOFTLINK "/g1/g1.2/g1.2.1/slink" {

View File

@ -11,25 +11,25 @@ DATASET "/g1/g1.1/dset1.1.1" {
COUNT ( 3, 2 );
BLOCK ( 1, 1 );
DATA {
(0,0), 1, 3, 5, 4, 12, 20
(0,0): 1, 3, 5, 4, 12, 20
}
}
ATTRIBUTE "attr1" {
DATATYPE H5T_STD_I8BE
DATASPACE SIMPLE { ( 27 ) / ( 27 ) }
DATA {
(0), 49, 115, 116, 32, 97, 116, 116, 114, 105, 98, 117, 116,
(12), 101, 32, 111, 102, 32, 100, 115, 101, 116, 49, 46, 49,
(24), 46, 49, 0
(0): 49, 115, 116, 32, 97, 116, 116, 114, 105, 98, 117, 116,
(12): 101, 32, 111, 102, 32, 100, 115, 101, 116, 49, 46, 49,
(24): 46, 49, 0
}
}
ATTRIBUTE "attr2" {
DATATYPE H5T_STD_I8BE
DATASPACE SIMPLE { ( 27 ) / ( 27 ) }
DATA {
(0), 50, 110, 100, 32, 97, 116, 116, 114, 105, 98, 117, 116,
(12), 101, 32, 111, 102, 32, 100, 115, 101, 116, 49, 46, 49,
(24), 46, 49, 0
(0): 50, 110, 100, 32, 97, 116, 116, 114, 105, 98, 117, 116,
(12): 101, 32, 111, 102, 32, 100, 115, 101, 116, 49, 46, 49,
(24): 46, 49, 0
}
}
}

View File

@ -11,7 +11,7 @@ DATASET "/g1/g1.1/dset1.1.2" {
COUNT ( 10 );
BLOCK ( 1 );
DATA {
(0), 0, 2, 4, 6, 8, 10, 12, 14, 16, 18
(0): 0, 2, 4, 6, 8, 10, 12, 14, 16, 18
}
}
}

View File

@ -7,8 +7,8 @@ GROUP "/" {
DATATYPE H5T_ARRAY { [4] H5T_STD_I32LE }
DATASPACE SIMPLE { ( 4 ) / ( 4 ) }
DATA {
(0), [ 0, 1, 2, 3 ], [ 10, 11, 12, 13 ], [ 20, 21, 22, 23 ],
(3), [ 30, 31, 32, 33 ]
(0): [ 0, 1, 2, 3 ], [ 10, 11, 12, 13 ], [ 20, 21, 22, 23 ],
(3): [ 30, 31, 32, 33 ]
}
}
}

View File

@ -7,54 +7,54 @@ GROUP "/" {
DATATYPE H5T_ARRAY { [3][4][5] H5T_STD_I32LE }
DATASPACE SIMPLE { ( 4 ) / ( 4 ) }
DATA {
(0), [ 0, 1, 2, 3, 4,
%s 10, 11, 12, 13, 14,
%s 20, 21, 22, 23, 24,
%s 30, 31, 32, 33, 34,
%s 100, 101, 102, 103, 104,
%s 110, 111, 112, 113, 114,
%s 120, 121, 122, 123, 124,
%s 130, 131, 132, 133, 134,
%s 200, 201, 202, 203, 204,
%s 210, 211, 212, 213, 214,
%s 220, 221, 222, 223, 224,
%s 230, 231, 232, 233, 234 ],
(1), [ 1000, 1001, 1002, 1003, 1004,
%s 1010, 1011, 1012, 1013, 1014,
%s 1020, 1021, 1022, 1023, 1024,
%s 1030, 1031, 1032, 1033, 1034,
%s 1100, 1101, 1102, 1103, 1104,
%s 1110, 1111, 1112, 1113, 1114,
%s 1120, 1121, 1122, 1123, 1124,
%s 1130, 1131, 1132, 1133, 1134,
%s 1200, 1201, 1202, 1203, 1204,
%s 1210, 1211, 1212, 1213, 1214,
%s 1220, 1221, 1222, 1223, 1224,
%s 1230, 1231, 1232, 1233, 1234 ],
(2), [ 2000, 2001, 2002, 2003, 2004,
%s 2010, 2011, 2012, 2013, 2014,
%s 2020, 2021, 2022, 2023, 2024,
%s 2030, 2031, 2032, 2033, 2034,
%s 2100, 2101, 2102, 2103, 2104,
%s 2110, 2111, 2112, 2113, 2114,
%s 2120, 2121, 2122, 2123, 2124,
%s 2130, 2131, 2132, 2133, 2134,
%s 2200, 2201, 2202, 2203, 2204,
%s 2210, 2211, 2212, 2213, 2214,
%s 2220, 2221, 2222, 2223, 2224,
%s 2230, 2231, 2232, 2233, 2234 ],
(3), [ 3000, 3001, 3002, 3003, 3004,
%s 3010, 3011, 3012, 3013, 3014,
%s 3020, 3021, 3022, 3023, 3024,
%s 3030, 3031, 3032, 3033, 3034,
%s 3100, 3101, 3102, 3103, 3104,
%s 3110, 3111, 3112, 3113, 3114,
%s 3120, 3121, 3122, 3123, 3124,
%s 3130, 3131, 3132, 3133, 3134,
%s 3200, 3201, 3202, 3203, 3204,
%s 3210, 3211, 3212, 3213, 3214,
%s 3220, 3221, 3222, 3223, 3224,
%s 3230, 3231, 3232, 3233, 3234 ]
(0): [ 0, 1, 2, 3, 4,
10, 11, 12, 13, 14,
20, 21, 22, 23, 24,
30, 31, 32, 33, 34,
100, 101, 102, 103, 104,
110, 111, 112, 113, 114,
120, 121, 122, 123, 124,
130, 131, 132, 133, 134,
200, 201, 202, 203, 204,
210, 211, 212, 213, 214,
220, 221, 222, 223, 224,
230, 231, 232, 233, 234 ],
(1): [ 1000, 1001, 1002, 1003, 1004,
1010, 1011, 1012, 1013, 1014,
1020, 1021, 1022, 1023, 1024,
1030, 1031, 1032, 1033, 1034,
1100, 1101, 1102, 1103, 1104,
1110, 1111, 1112, 1113, 1114,
1120, 1121, 1122, 1123, 1124,
1130, 1131, 1132, 1133, 1134,
1200, 1201, 1202, 1203, 1204,
1210, 1211, 1212, 1213, 1214,
1220, 1221, 1222, 1223, 1224,
1230, 1231, 1232, 1233, 1234 ],
(2): [ 2000, 2001, 2002, 2003, 2004,
2010, 2011, 2012, 2013, 2014,
2020, 2021, 2022, 2023, 2024,
2030, 2031, 2032, 2033, 2034,
2100, 2101, 2102, 2103, 2104,
2110, 2111, 2112, 2113, 2114,
2120, 2121, 2122, 2123, 2124,
2130, 2131, 2132, 2133, 2134,
2200, 2201, 2202, 2203, 2204,
2210, 2211, 2212, 2213, 2214,
2220, 2221, 2222, 2223, 2224,
2230, 2231, 2232, 2233, 2234 ],
(3): [ 3000, 3001, 3002, 3003, 3004,
3010, 3011, 3012, 3013, 3014,
3020, 3021, 3022, 3023, 3024,
3030, 3031, 3032, 3033, 3034,
3100, 3101, 3102, 3103, 3104,
3110, 3111, 3112, 3113, 3114,
3120, 3121, 3122, 3123, 3124,
3130, 3131, 3132, 3133, 3134,
3200, 3201, 3202, 3203, 3204,
3210, 3211, 3212, 3213, 3214,
3220, 3221, 3222, 3223, 3224,
3230, 3231, 3232, 3233, 3234 ]
}
}
}

View File

@ -7,90 +7,90 @@ GROUP "/" {
DATATYPE H5T_ARRAY { [4] H5T_ARRAY { [6][3] H5T_STD_I32LE } }
DATASPACE SIMPLE { ( 4 ) / ( 4 ) }
DATA {
(0), [ [ 0, 1, 2,
%s 10, 11, 12,
%s 20, 21, 22,
%s 30, 31, 32,
%s 40, 41, 42,
%s 50, 51, 52 ], [ 100, 101, 102,
%s 110, 111, 112,
%s 120, 121, 122,
%s 130, 131, 132,
%s 140, 141, 142,
%s 150, 151, 152 ], [ 200, 201, 202,
%s 210, 211, 212,
%s 220, 221, 222,
%s 230, 231, 232,
%s 240, 241, 242,
%s 250, 251, 252 ], [ 300, 301, 302,
%s 310, 311, 312,
%s 320, 321, 322,
%s 330, 331, 332,
%s 340, 341, 342,
%s 350, 351, 352 ] ],
(1), [ [ 1000, 1001, 1002,
%s 1010, 1011, 1012,
%s 1020, 1021, 1022,
%s 1030, 1031, 1032,
%s 1040, 1041, 1042,
%s 1050, 1051, 1052 ], [ 1100, 1101, 1102,
%s 1110, 1111, 1112,
%s 1120, 1121, 1122,
%s 1130, 1131, 1132,
%s 1140, 1141, 1142,
%s 1150, 1151, 1152 ], [ 1200, 1201, 1202,
%s 1210, 1211, 1212,
%s 1220, 1221, 1222,
%s 1230, 1231, 1232,
%s 1240, 1241, 1242,
%s 1250, 1251, 1252 ], [ 1300, 1301, 1302,
%s 1310, 1311, 1312,
%s 1320, 1321, 1322,
%s 1330, 1331, 1332,
%s 1340, 1341, 1342,
%s 1350, 1351, 1352 ] ],
(2), [ [ 2000, 2001, 2002,
%s 2010, 2011, 2012,
%s 2020, 2021, 2022,
%s 2030, 2031, 2032,
%s 2040, 2041, 2042,
%s 2050, 2051, 2052 ], [ 2100, 2101, 2102,
%s 2110, 2111, 2112,
%s 2120, 2121, 2122,
%s 2130, 2131, 2132,
%s 2140, 2141, 2142,
%s 2150, 2151, 2152 ], [ 2200, 2201, 2202,
%s 2210, 2211, 2212,
%s 2220, 2221, 2222,
%s 2230, 2231, 2232,
%s 2240, 2241, 2242,
%s 2250, 2251, 2252 ], [ 2300, 2301, 2302,
%s 2310, 2311, 2312,
%s 2320, 2321, 2322,
%s 2330, 2331, 2332,
%s 2340, 2341, 2342,
%s 2350, 2351, 2352 ] ],
(3), [ [ 3000, 3001, 3002,
%s 3010, 3011, 3012,
%s 3020, 3021, 3022,
%s 3030, 3031, 3032,
%s 3040, 3041, 3042,
%s 3050, 3051, 3052 ], [ 3100, 3101, 3102,
%s 3110, 3111, 3112,
%s 3120, 3121, 3122,
%s 3130, 3131, 3132,
%s 3140, 3141, 3142,
%s 3150, 3151, 3152 ], [ 3200, 3201, 3202,
%s 3210, 3211, 3212,
%s 3220, 3221, 3222,
%s 3230, 3231, 3232,
%s 3240, 3241, 3242,
%s 3250, 3251, 3252 ], [ 3300, 3301, 3302,
%s 3310, 3311, 3312,
%s 3320, 3321, 3322,
%s 3330, 3331, 3332,
%s 3340, 3341, 3342,
%s 3350, 3351, 3352 ] ]
(0): [ [ 0, 1, 2,
10, 11, 12,
20, 21, 22,
30, 31, 32,
40, 41, 42,
50, 51, 52 ], [ 100, 101, 102,
110, 111, 112,
120, 121, 122,
130, 131, 132,
140, 141, 142,
150, 151, 152 ], [ 200, 201, 202,
210, 211, 212,
220, 221, 222,
230, 231, 232,
240, 241, 242,
250, 251, 252 ], [ 300, 301, 302,
310, 311, 312,
320, 321, 322,
330, 331, 332,
340, 341, 342,
350, 351, 352 ] ],
(1): [ [ 1000, 1001, 1002,
1010, 1011, 1012,
1020, 1021, 1022,
1030, 1031, 1032,
1040, 1041, 1042,
1050, 1051, 1052 ], [ 1100, 1101, 1102,
1110, 1111, 1112,
1120, 1121, 1122,
1130, 1131, 1132,
1140, 1141, 1142,
1150, 1151, 1152 ], [ 1200, 1201, 1202,
1210, 1211, 1212,
1220, 1221, 1222,
1230, 1231, 1232,
1240, 1241, 1242,
1250, 1251, 1252 ], [ 1300, 1301, 1302,
1310, 1311, 1312,
1320, 1321, 1322,
1330, 1331, 1332,
1340, 1341, 1342,
1350, 1351, 1352 ] ],
(2): [ [ 2000, 2001, 2002,
2010, 2011, 2012,
2020, 2021, 2022,
2030, 2031, 2032,
2040, 2041, 2042,
2050, 2051, 2052 ], [ 2100, 2101, 2102,
2110, 2111, 2112,
2120, 2121, 2122,
2130, 2131, 2132,
2140, 2141, 2142,
2150, 2151, 2152 ], [ 2200, 2201, 2202,
2210, 2211, 2212,
2220, 2221, 2222,
2230, 2231, 2232,
2240, 2241, 2242,
2250, 2251, 2252 ], [ 2300, 2301, 2302,
2310, 2311, 2312,
2320, 2321, 2322,
2330, 2331, 2332,
2340, 2341, 2342,
2350, 2351, 2352 ] ],
(3): [ [ 3000, 3001, 3002,
3010, 3011, 3012,
3020, 3021, 3022,
3030, 3031, 3032,
3040, 3041, 3042,
3050, 3051, 3052 ], [ 3100, 3101, 3102,
3110, 3111, 3112,
3120, 3121, 3122,
3130, 3131, 3132,
3140, 3141, 3142,
3150, 3151, 3152 ], [ 3200, 3201, 3202,
3210, 3211, 3212,
3220, 3221, 3222,
3230, 3231, 3232,
3240, 3241, 3242,
3250, 3251, 3252 ], [ 3300, 3301, 3302,
3310, 3311, 3312,
3320, 3321, 3322,
3330, 3331, 3332,
3340, 3341, 3342,
3350, 3351, 3352 ] ]
}
}
}

View File

@ -10,7 +10,7 @@ GROUP "/" {
} }
DATASPACE SIMPLE { ( 4 ) / ( 4 ) }
DATA {
(0), [ {
(0): [ {
0,
0
}, {
@ -23,7 +23,7 @@ GROUP "/" {
3,
3
} ],
(1), [ {
(1): [ {
10,
2.5
}, {
@ -36,7 +36,7 @@ GROUP "/" {
13,
5.5
} ],
(2), [ {
(2): [ {
20,
5
}, {
@ -49,7 +49,7 @@ GROUP "/" {
23,
8
} ],
(3), [ {
(3): [ {
30,
7.5
}, {

View File

@ -10,7 +10,7 @@ GROUP "/" {
} }
DATASPACE SIMPLE { ( 4 ) / ( 4 ) }
DATA {
(0), [ {
(0): [ {
0,
[ 0, 1, 2, 3 ]
}, {
@ -23,7 +23,7 @@ GROUP "/" {
3,
[ 7.5, 8.5, 9.5, 10.5 ]
} ],
(1), [ {
(1): [ {
10,
[ 10, 11, 12, 13 ]
}, {
@ -36,7 +36,7 @@ GROUP "/" {
13,
[ 17.5, 18.5, 19.5, 20.5 ]
} ],
(2), [ {
(2): [ {
20,
[ 20, 21, 22, 23 ]
}, {
@ -49,7 +49,7 @@ GROUP "/" {
23,
[ 27.5, 28.5, 29.5, 30.5 ]
} ],
(3), [ {
(3): [ {
30,
[ 30, 31, 32, 33 ]
}, {

View File

@ -7,10 +7,10 @@ GROUP "/" {
DATATYPE H5T_ARRAY { [4] H5T_VLEN { H5T_STD_U32LE} }
DATASPACE SIMPLE { ( 4 ) / ( 4 ) }
DATA {
(0), [ (0), (10, 11), (20, 21, 22), (30, 31, 32, 33) ],
(1), [ (100, 101), (110, 111, 112), (120, 121, 122, 123), (130, 131, 132, 133, 134) ],
(2), [ (200, 201, 202), (210, 211, 212, 213), (220, 221, 222, 223, 224), (230, 231, 232, 233, 234, 235) ],
(3), [ (300, 301, 302, 303), (310, 311, 312, 313, 314), (320, 321, 322, 323, 324, 325), (330, 331, 332, 333, 334, 335, 336) ]
(0): [ (0), (10, 11), (20, 21, 22), (30, 31, 32, 33) ],
(1): [ (100, 101), (110, 111, 112), (120, 121, 122, 123), (130, 131, 132, 133, 134) ],
(2): [ (200, 201, 202), (210, 211, 212, 213), (220, 221, 222, 223, 224), (230, 231, 232, 233, 234, 235) ],
(3): [ (300, 301, 302, 303), (310, 311, 312, 313, 314), (320, 321, 322, 323, 324, 325), (330, 331, 332, 333, 334, 335, 336) ]
}
}
}

View File

@ -7,10 +7,10 @@ GROUP "/" {
DATATYPE H5T_ARRAY { [4] H5T_VLEN { H5T_ARRAY { [4] H5T_STD_U32LE }} }
DATASPACE SIMPLE { ( 4 ) / ( 4 ) }
DATA {
(0), [ ([ 0, 1, 2, 3 ]), ([ 100, 101, 102, 103 ], [ 110, 111, 112, 113 ]), ([ 200, 201, 202, 203 ], [ 210, 211, 212, 213 ], [ 220, 221, 222, 223 ]), ([ 300, 301, 302, 303 ], [ 310, 311, 312, 313 ], [ 320, 321, 322, 323 ], [ 330, 331, 332, 333 ]) ],
(1), [ ([ 1000, 1001, 1002, 1003 ], [ 1010, 1011, 1012, 1013 ]), ([ 1100, 1101, 1102, 1103 ], [ 1110, 1111, 1112, 1113 ], [ 1120, 1121, 1122, 1123 ]), ([ 1200, 1201, 1202, 1203 ], [ 1210, 1211, 1212, 1213 ], [ 1220, 1221, 1222, 1223 ], [ 1230, 1231, 1232, 1233 ]), ([ 1300, 1301, 1302, 1303 ], [ 1310, 1311, 1312, 1313 ], [ 1320, 1321, 1322, 1323 ], [ 1330, 1331, 1332, 1333 ], [ 1340, 1341, 1342, 1343 ]) ],
(2), [ ([ 2000, 2001, 2002, 2003 ], [ 2010, 2011, 2012, 2013 ], [ 2020, 2021, 2022, 2023 ]), ([ 2100, 2101, 2102, 2103 ], [ 2110, 2111, 2112, 2113 ], [ 2120, 2121, 2122, 2123 ], [ 2130, 2131, 2132, 2133 ]), ([ 2200, 2201, 2202, 2203 ], [ 2210, 2211, 2212, 2213 ], [ 2220, 2221, 2222, 2223 ], [ 2230, 2231, 2232, 2233 ], [ 2240, 2241, 2242, 2243 ]), ([ 2300, 2301, 2302, 2303 ], [ 2310, 2311, 2312, 2313 ], [ 2320, 2321, 2322, 2323 ], [ 2330, 2331, 2332, 2333 ], [ 2340, 2341, 2342, 2343 ], [ 2350, 2351, 2352, 2353 ]) ],
(3), [ ([ 3000, 3001, 3002, 3003 ], [ 3010, 3011, 3012, 3013 ], [ 3020, 3021, 3022, 3023 ], [ 3030, 3031, 3032, 3033 ]), ([ 3100, 3101, 3102, 3103 ], [ 3110, 3111, 3112, 3113 ], [ 3120, 3121, 3122, 3123 ], [ 3130, 3131, 3132, 3133 ], [ 3140, 3141, 3142, 3143 ]), ([ 3200, 3201, 3202, 3203 ], [ 3210, 3211, 3212, 3213 ], [ 3220, 3221, 3222, 3223 ], [ 3230, 3231, 3232, 3233 ], [ 3240, 3241, 3242, 3243 ], [ 3250, 3251, 3252, 3253 ]), ([ 3300, 3301, 3302, 3303 ], [ 3310, 3311, 3312, 3313 ], [ 3320, 3321, 3322, 3323 ], [ 3330, 3331, 3332, 3333 ], [ 3340, 3341, 3342, 3343 ], [ 3350, 3351, 3352, 3353 ], [ 3360, 3361, 3362, 3363 ]) ]
(0): [ ([ 0, 1, 2, 3 ]), ([ 100, 101, 102, 103 ], [ 110, 111, 112, 113 ]), ([ 200, 201, 202, 203 ], [ 210, 211, 212, 213 ], [ 220, 221, 222, 223 ]), ([ 300, 301, 302, 303 ], [ 310, 311, 312, 313 ], [ 320, 321, 322, 323 ], [ 330, 331, 332, 333 ]) ],
(1): [ ([ 1000, 1001, 1002, 1003 ], [ 1010, 1011, 1012, 1013 ]), ([ 1100, 1101, 1102, 1103 ], [ 1110, 1111, 1112, 1113 ], [ 1120, 1121, 1122, 1123 ]), ([ 1200, 1201, 1202, 1203 ], [ 1210, 1211, 1212, 1213 ], [ 1220, 1221, 1222, 1223 ], [ 1230, 1231, 1232, 1233 ]), ([ 1300, 1301, 1302, 1303 ], [ 1310, 1311, 1312, 1313 ], [ 1320, 1321, 1322, 1323 ], [ 1330, 1331, 1332, 1333 ], [ 1340, 1341, 1342, 1343 ]) ],
(2): [ ([ 2000, 2001, 2002, 2003 ], [ 2010, 2011, 2012, 2013 ], [ 2020, 2021, 2022, 2023 ]), ([ 2100, 2101, 2102, 2103 ], [ 2110, 2111, 2112, 2113 ], [ 2120, 2121, 2122, 2123 ], [ 2130, 2131, 2132, 2133 ]), ([ 2200, 2201, 2202, 2203 ], [ 2210, 2211, 2212, 2213 ], [ 2220, 2221, 2222, 2223 ], [ 2230, 2231, 2232, 2233 ], [ 2240, 2241, 2242, 2243 ]), ([ 2300, 2301, 2302, 2303 ], [ 2310, 2311, 2312, 2313 ], [ 2320, 2321, 2322, 2323 ], [ 2330, 2331, 2332, 2333 ], [ 2340, 2341, 2342, 2343 ], [ 2350, 2351, 2352, 2353 ]) ],
(3): [ ([ 3000, 3001, 3002, 3003 ], [ 3010, 3011, 3012, 3013 ], [ 3020, 3021, 3022, 3023 ], [ 3030, 3031, 3032, 3033 ]), ([ 3100, 3101, 3102, 3103 ], [ 3110, 3111, 3112, 3113 ], [ 3120, 3121, 3122, 3123 ], [ 3130, 3131, 3132, 3133 ], [ 3140, 3141, 3142, 3143 ]), ([ 3200, 3201, 3202, 3203 ], [ 3210, 3211, 3212, 3213 ], [ 3220, 3221, 3222, 3223 ], [ 3230, 3231, 3232, 3233 ], [ 3240, 3241, 3242, 3243 ], [ 3250, 3251, 3252, 3253 ]), ([ 3300, 3301, 3302, 3303 ], [ 3310, 3311, 3312, 3313 ], [ 3320, 3321, 3322, 3323 ], [ 3330, 3331, 3332, 3333 ], [ 3340, 3341, 3342, 3343 ], [ 3350, 3351, 3352, 3353 ], [ 3360, 3361, 3362, 3363 ]) ]
}
}
}

View File

@ -7,11 +7,11 @@ GROUP "/" {
DATATYPE H5T_STD_I8LE
DATASPACE SIMPLE { ( 308 ) / ( 308 ) }
DATA {
(0), Four score and seven years ago our forefathers brought forth on th"
(66), is continent a new nation, conceived in liberty and dedicated to "
(131), the proposition that all men are created equal. Now we are engag"
(195), ed in a great civil war, testing whether that nation or any nati"
(259), on so conceived and so dedicated can long endure."
(0): Four score and seven years ago our forefathers brought forth on th"
(66): is continent a new nation, conceived in liberty and dedicated to "
(131): the proposition that all men are created equal. Now we are engag"
(195): ed in a great civil war, testing whether that nation or any nati"
(259): on so conceived and so dedicated can long endure."
}
}
}

View File

@ -15,27 +15,27 @@ GROUP "/" {
}
DATASPACE SIMPLE { ( 5 ) / ( 5 ) }
DATA {
(0), {
(0): {
0,
0,
1
},
(1), {
(1): {
1,
1,
0.5
},
(2), {
(2): {
2,
4,
0.333333
},
(3), {
(3): {
3,
9,
0.25
},
(4), {
(4): {
4,
16,
0.2
@ -47,23 +47,23 @@ GROUP "/" {
DATATYPE "/type1"
DATASPACE SIMPLE { ( 5 ) / ( 5 ) }
DATA {
(0), {
(0): {
0,
0
},
(1), {
(1): {
1,
1.1
},
(2), {
(2): {
2,
2.2
},
(3), {
(3): {
3,
3.3
},
(4), {
(4): {
4,
4.4
}
@ -73,149 +73,149 @@ GROUP "/" {
DATATYPE "/type2"
DATASPACE SIMPLE { ( 3, 6 ) / ( 3, 6 ) }
DATA {
(0,0), {
(0,0): {
[ 0, 1, 2, 3 ],
[ 1, 2, 3, 4, 5, 6,
%s 2, 3, 4, 5, 6, 7,
%s 3, 4, 5, 6, 7, 8,
%s 4, 5, 6, 7, 8, 9,
%s 5, 6, 7, 8, 9, 10 ]
2, 3, 4, 5, 6, 7,
3, 4, 5, 6, 7, 8,
4, 5, 6, 7, 8, 9,
5, 6, 7, 8, 9, 10 ]
},
(0,1), {
(0,1): {
[ 1, 2, 3, 4 ],
[ 2, 3, 4, 5, 6, 7,
%s 3, 4, 5, 6, 7, 8,
%s 4, 5, 6, 7, 8, 9,
%s 5, 6, 7, 8, 9, 10,
%s 6, 7, 8, 9, 10, 11 ]
3, 4, 5, 6, 7, 8,
4, 5, 6, 7, 8, 9,
5, 6, 7, 8, 9, 10,
6, 7, 8, 9, 10, 11 ]
},
(0,2), {
(0,2): {
[ 2, 3, 4, 5 ],
[ 3, 4, 5, 6, 7, 8,
%s 4, 5, 6, 7, 8, 9,
%s 5, 6, 7, 8, 9, 10,
%s 6, 7, 8, 9, 10, 11,
%s 7, 8, 9, 10, 11, 12 ]
4, 5, 6, 7, 8, 9,
5, 6, 7, 8, 9, 10,
6, 7, 8, 9, 10, 11,
7, 8, 9, 10, 11, 12 ]
},
(0,3), {
(0,3): {
[ 3, 4, 5, 6 ],
[ 4, 5, 6, 7, 8, 9,
%s 5, 6, 7, 8, 9, 10,
%s 6, 7, 8, 9, 10, 11,
%s 7, 8, 9, 10, 11, 12,
%s 8, 9, 10, 11, 12, 13 ]
5, 6, 7, 8, 9, 10,
6, 7, 8, 9, 10, 11,
7, 8, 9, 10, 11, 12,
8, 9, 10, 11, 12, 13 ]
},
(0,4), {
(0,4): {
[ 4, 5, 6, 7 ],
[ 5, 6, 7, 8, 9, 10,
%s 6, 7, 8, 9, 10, 11,
%s 7, 8, 9, 10, 11, 12,
%s 8, 9, 10, 11, 12, 13,
%s 9, 10, 11, 12, 13, 14 ]
6, 7, 8, 9, 10, 11,
7, 8, 9, 10, 11, 12,
8, 9, 10, 11, 12, 13,
9, 10, 11, 12, 13, 14 ]
},
(0,5), {
(0,5): {
[ 5, 6, 7, 8 ],
[ 6, 7, 8, 9, 10, 11,
%s 7, 8, 9, 10, 11, 12,
%s 8, 9, 10, 11, 12, 13,
%s 9, 10, 11, 12, 13, 14,
%s 10, 11, 12, 13, 14, 15 ]
7, 8, 9, 10, 11, 12,
8, 9, 10, 11, 12, 13,
9, 10, 11, 12, 13, 14,
10, 11, 12, 13, 14, 15 ]
},
(1,0), {
(1,0): {
[ 1, 2, 3, 4 ],
[ 2, 3, 4, 5, 6, 7,
%s 3, 4, 5, 6, 7, 8,
%s 4, 5, 6, 7, 8, 9,
%s 5, 6, 7, 8, 9, 10,
%s 6, 7, 8, 9, 10, 11 ]
3, 4, 5, 6, 7, 8,
4, 5, 6, 7, 8, 9,
5, 6, 7, 8, 9, 10,
6, 7, 8, 9, 10, 11 ]
},
(1,1), {
(1,1): {
[ 2, 3, 4, 5 ],
[ 3, 4, 5, 6, 7, 8,
%s 4, 5, 6, 7, 8, 9,
%s 5, 6, 7, 8, 9, 10,
%s 6, 7, 8, 9, 10, 11,
%s 7, 8, 9, 10, 11, 12 ]
4, 5, 6, 7, 8, 9,
5, 6, 7, 8, 9, 10,
6, 7, 8, 9, 10, 11,
7, 8, 9, 10, 11, 12 ]
},
(1,2), {
(1,2): {
[ 3, 4, 5, 6 ],
[ 4, 5, 6, 7, 8, 9,
%s 5, 6, 7, 8, 9, 10,
%s 6, 7, 8, 9, 10, 11,
%s 7, 8, 9, 10, 11, 12,
%s 8, 9, 10, 11, 12, 13 ]
5, 6, 7, 8, 9, 10,
6, 7, 8, 9, 10, 11,
7, 8, 9, 10, 11, 12,
8, 9, 10, 11, 12, 13 ]
},
(1,3), {
(1,3): {
[ 4, 5, 6, 7 ],
[ 5, 6, 7, 8, 9, 10,
%s 6, 7, 8, 9, 10, 11,
%s 7, 8, 9, 10, 11, 12,
%s 8, 9, 10, 11, 12, 13,
%s 9, 10, 11, 12, 13, 14 ]
6, 7, 8, 9, 10, 11,
7, 8, 9, 10, 11, 12,
8, 9, 10, 11, 12, 13,
9, 10, 11, 12, 13, 14 ]
},
(1,4), {
(1,4): {
[ 5, 6, 7, 8 ],
[ 6, 7, 8, 9, 10, 11,
%s 7, 8, 9, 10, 11, 12,
%s 8, 9, 10, 11, 12, 13,
%s 9, 10, 11, 12, 13, 14,
%s 10, 11, 12, 13, 14, 15 ]
7, 8, 9, 10, 11, 12,
8, 9, 10, 11, 12, 13,
9, 10, 11, 12, 13, 14,
10, 11, 12, 13, 14, 15 ]
},
(1,5), {
(1,5): {
[ 6, 7, 8, 9 ],
[ 7, 8, 9, 10, 11, 12,
%s 8, 9, 10, 11, 12, 13,
%s 9, 10, 11, 12, 13, 14,
%s 10, 11, 12, 13, 14, 15,
%s 11, 12, 13, 14, 15, 16 ]
8, 9, 10, 11, 12, 13,
9, 10, 11, 12, 13, 14,
10, 11, 12, 13, 14, 15,
11, 12, 13, 14, 15, 16 ]
},
(2,0), {
(2,0): {
[ 2, 3, 4, 5 ],
[ 3, 4, 5, 6, 7, 8,
%s 4, 5, 6, 7, 8, 9,
%s 5, 6, 7, 8, 9, 10,
%s 6, 7, 8, 9, 10, 11,
%s 7, 8, 9, 10, 11, 12 ]
4, 5, 6, 7, 8, 9,
5, 6, 7, 8, 9, 10,
6, 7, 8, 9, 10, 11,
7, 8, 9, 10, 11, 12 ]
},
(2,1), {
(2,1): {
[ 3, 4, 5, 6 ],
[ 4, 5, 6, 7, 8, 9,
%s 5, 6, 7, 8, 9, 10,
%s 6, 7, 8, 9, 10, 11,
%s 7, 8, 9, 10, 11, 12,
%s 8, 9, 10, 11, 12, 13 ]
5, 6, 7, 8, 9, 10,
6, 7, 8, 9, 10, 11,
7, 8, 9, 10, 11, 12,
8, 9, 10, 11, 12, 13 ]
},
(2,2), {
(2,2): {
[ 4, 5, 6, 7 ],
[ 5, 6, 7, 8, 9, 10,
%s 6, 7, 8, 9, 10, 11,
%s 7, 8, 9, 10, 11, 12,
%s 8, 9, 10, 11, 12, 13,
%s 9, 10, 11, 12, 13, 14 ]
6, 7, 8, 9, 10, 11,
7, 8, 9, 10, 11, 12,
8, 9, 10, 11, 12, 13,
9, 10, 11, 12, 13, 14 ]
},
(2,3), {
(2,3): {
[ 5, 6, 7, 8 ],
[ 6, 7, 8, 9, 10, 11,
%s 7, 8, 9, 10, 11, 12,
%s 8, 9, 10, 11, 12, 13,
%s 9, 10, 11, 12, 13, 14,
%s 10, 11, 12, 13, 14, 15 ]
7, 8, 9, 10, 11, 12,
8, 9, 10, 11, 12, 13,
9, 10, 11, 12, 13, 14,
10, 11, 12, 13, 14, 15 ]
},
(2,4), {
(2,4): {
[ 6, 7, 8, 9 ],
[ 7, 8, 9, 10, 11, 12,
%s 8, 9, 10, 11, 12, 13,
%s 9, 10, 11, 12, 13, 14,
%s 10, 11, 12, 13, 14, 15,
%s 11, 12, 13, 14, 15, 16 ]
8, 9, 10, 11, 12, 13,
9, 10, 11, 12, 13, 14,
10, 11, 12, 13, 14, 15,
11, 12, 13, 14, 15, 16 ]
},
(2,5), {
(2,5): {
[ 7, 8, 9, 10 ],
[ 8, 9, 10, 11, 12, 13,
%s 9, 10, 11, 12, 13, 14,
%s 10, 11, 12, 13, 14, 15,
%s 11, 12, 13, 14, 15, 16,
%s 12, 13, 14, 15, 16, 17 ]
9, 10, 11, 12, 13, 14,
10, 11, 12, 13, 14, 15,
11, 12, 13, 14, 15, 16,
12, 13, 14, 15, 16, 17 ]
}
}
}
@ -223,23 +223,23 @@ GROUP "/" {
DATATYPE "/group1/type3"
DATASPACE SIMPLE { ( 5 ) / ( 5 ) }
DATA {
(0), {
(0): {
0,
3
},
(1), {
(1): {
1,
4
},
(2), {
(2): {
2,
5
},
(3), {
(3): {
3,
6
},
(4), {
(4): {
4,
7
}
@ -255,23 +255,23 @@ GROUP "/" {
DATATYPE "/#6632"
DATASPACE SIMPLE { ( 5 ) / ( 5 ) }
DATA {
(0), {
(0): {
0,
0
},
(1), {
(1): {
1,
0.1
},
(2), {
(2): {
2,
0.2
},
(3), {
(3): {
3,
0.3
},
(4), {
(4): {
4,
0.4
}

View File

@ -9,23 +9,23 @@ GROUP "/group2" {
DATATYPE "/#6632"
DATASPACE SIMPLE { ( 5 ) / ( 5 ) }
DATA {
(0), {
(0): {
0,
0
},
(1), {
(1): {
1,
0.1
},
(2), {
(2): {
2,
0.2
},
(3), {
(3): {
3,
0.3
},
(4), {
(4): {
4,
0.4
}

View File

@ -25,80 +25,80 @@ GROUP "/" {
}
DATASPACE SIMPLE { ( 6 ) / ( 6 ) }
DATA {
(0), {
(0): {
0,
[ "A fight is a contract that takes two people to honor.", "A combative stance means that you've accepted the contract.", "In which case, you deserve what you get.", " -- Professor Cheng Man-ch'ing" ],
"Hello!",
[ 0, 1, 2, 3, 4, 5,
%s 1, 2, 3, 4, 5, 6,
%s 2, 3, 4, 5, 6, 7,
%s 3, 4, 5, 6, 7, 8,
%s 4, 5, 6, 7, 8, 9 ],
1, 2, 3, 4, 5, 6,
2, 3, 4, 5, 6, 7,
3, 4, 5, 6, 7, 8,
4, 5, 6, 7, 8, 9 ],
0,
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ],
109
},
(1), {
(1): {
1,
[ "A fight is a contract that takes two people to honor.", "A combative stance means that you've accepted the contract.", "In which case, you deserve what you get.", " -- Professor Cheng Man-ch'ing" ],
"Hello!",
[ 1, 2, 3, 4, 5, 6,
%s 2, 3, 4, 5, 6, 7,
%s 3, 4, 5, 6, 7, 8,
%s 4, 5, 6, 7, 8, 9,
%s 5, 6, 7, 8, 9, 10 ],
2, 3, 4, 5, 6, 7,
3, 4, 5, 6, 7, 8,
4, 5, 6, 7, 8, 9,
5, 6, 7, 8, 9, 10 ],
0.96,
[ 1024.96, 1024.96, 1024.96, 1024.96, 1024.96, 1024.96, 1024.96, 1024.96, 1024.96, 1024.96 ],
109
},
(2), {
(2): {
2,
[ "A fight is a contract that takes two people to honor.", "A combative stance means that you've accepted the contract.", "In which case, you deserve what you get.", " -- Professor Cheng Man-ch'ing" ],
"Hello!",
[ 2, 3, 4, 5, 6, 7,
%s 3, 4, 5, 6, 7, 8,
%s 4, 5, 6, 7, 8, 9,
%s 5, 6, 7, 8, 9, 10,
%s 6, 7, 8, 9, 10, 11 ],
3, 4, 5, 6, 7, 8,
4, 5, 6, 7, 8, 9,
5, 6, 7, 8, 9, 10,
6, 7, 8, 9, 10, 11 ],
1.92,
[ 2049.93, 2049.93, 2049.93, 2049.93, 2049.93, 2049.93, 2049.93, 2049.93, 2049.93, 2049.93 ],
109
},
(3), {
(3): {
3,
[ "A fight is a contract that takes two people to honor.", "A combative stance means that you've accepted the contract.", "In which case, you deserve what you get.", " -- Professor Cheng Man-ch'ing" ],
"Hello!",
[ 3, 4, 5, 6, 7, 8,
%s 4, 5, 6, 7, 8, 9,
%s 5, 6, 7, 8, 9, 10,
%s 6, 7, 8, 9, 10, 11,
%s 7, 8, 9, 10, 11, 12 ],
4, 5, 6, 7, 8, 9,
5, 6, 7, 8, 9, 10,
6, 7, 8, 9, 10, 11,
7, 8, 9, 10, 11, 12 ],
2.88,
[ 3074.89, 3074.89, 3074.89, 3074.89, 3074.89, 3074.89, 3074.89, 3074.89, 3074.89, 3074.89 ],
109
},
(4), {
(4): {
4,
[ "A fight is a contract that takes two people to honor.", "A combative stance means that you've accepted the contract.", "In which case, you deserve what you get.", " -- Professor Cheng Man-ch'ing" ],
"Hello!",
[ 4, 5, 6, 7, 8, 9,
%s 5, 6, 7, 8, 9, 10,
%s 6, 7, 8, 9, 10, 11,
%s 7, 8, 9, 10, 11, 12,
%s 8, 9, 10, 11, 12, 13 ],
5, 6, 7, 8, 9, 10,
6, 7, 8, 9, 10, 11,
7, 8, 9, 10, 11, 12,
8, 9, 10, 11, 12, 13 ],
3.84,
[ 4099.85, 4099.85, 4099.85, 4099.85, 4099.85, 4099.85, 4099.85, 4099.85, 4099.85, 4099.85 ],
109
},
(5), {
(5): {
5,
[ "A fight is a contract that takes two people to honor.", "A combative stance means that you've accepted the contract.", "In which case, you deserve what you get.", " -- Professor Cheng Man-ch'ing" ],
"Hello!",
[ 5, 6, 7, 8, 9, 10,
%s 6, 7, 8, 9, 10, 11,
%s 7, 8, 9, 10, 11, 12,
%s 8, 9, 10, 11, 12, 13,
%s 9, 10, 11, 12, 13, 14 ],
6, 7, 8, 9, 10, 11,
7, 8, 9, 10, 11, 12,
8, 9, 10, 11, 12, 13,
9, 10, 11, 12, 13, 14 ],
4.8,
[ 5124.82, 5124.82, 5124.82, 5124.82, 5124.82, 5124.82, 5124.82, 5124.82, 5124.82, 5124.82 ],
109

View File

@ -7,122 +7,122 @@ GROUP "/" {
DATATYPE H5T_STD_I32BE
DATASPACE SIMPLE { ( 10, 20 ) / ( 10, 20 ) }
DATA {
(0,0), 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
(0,19), 19,
(1,0), 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
(1,18), 19, 20,
(2,0), 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
(2,18), 20, 21,
(3,0), 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
(3,18), 21, 22,
(4,0), 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
(4,18), 22, 23,
(5,0), 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
(5,17), 22, 23, 24,
(6,0), 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
(6,17), 23, 24, 25,
(7,0), 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
(7,17), 24, 25, 26,
(8,0), 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
(8,17), 25, 26, 27,
(9,0), 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
(9,16), 25, 26, 27, 28
(0,0): 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
(0,19): 19,
(1,0): 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
(1,18): 19, 20,
(2,0): 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
(2,18): 20, 21,
(3,0): 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
(3,18): 21, 22,
(4,0): 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
(4,18): 22, 23,
(5,0): 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
(5,17): 22, 23, 24,
(6,0): 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
(6,17): 23, 24, 25,
(7,0): 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
(7,17): 24, 25, 26,
(8,0): 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
(8,17): 25, 26, 27,
(9,0): 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
(9,16): 25, 26, 27, 28
}
}
DATASET "dset2" {
DATATYPE H5T_IEEE_F64BE
DATASPACE SIMPLE { ( 30, 20 ) / ( 30, 20 ) }
DATA {
(0,0), 0, 0.0001, 0.0002, 0.0003, 0.0004, 0.0005, 0.0006, 0.0007,
(0,8), 0.0008, 0.0009, 0.001, 0.0011, 0.0012, 0.0013, 0.0014, 0.0015,
(0,16), 0.0016, 0.0017, 0.0018, 0.0019,
(1,0), 1, 1.0001, 1.0002, 1.0003, 1.0004, 1.0005, 1.0006, 1.0007,
(1,8), 1.0008, 1.0009, 1.001, 1.0011, 1.0012, 1.0013, 1.0014, 1.0015,
(1,16), 1.0016, 1.0017, 1.0018, 1.0019,
(2,0), 2, 2.0001, 2.0002, 2.0003, 2.0004, 2.0005, 2.0006, 2.0007,
(2,8), 2.0008, 2.0009, 2.001, 2.0011, 2.0012, 2.0013, 2.0014, 2.0015,
(2,16), 2.0016, 2.0017, 2.0018, 2.0019,
(3,0), 3, 3.0001, 3.0002, 3.0003, 3.0004, 3.0005, 3.0006, 3.0007,
(3,8), 3.0008, 3.0009, 3.001, 3.0011, 3.0012, 3.0013, 3.0014, 3.0015,
(3,16), 3.0016, 3.0017, 3.0018, 3.0019,
(4,0), 4, 4.0001, 4.0002, 4.0003, 4.0004, 4.0005, 4.0006, 4.0007,
(4,8), 4.0008, 4.0009, 4.001, 4.0011, 4.0012, 4.0013, 4.0014, 4.0015,
(4,16), 4.0016, 4.0017, 4.0018, 4.0019,
(5,0), 5, 5.0001, 5.0002, 5.0003, 5.0004, 5.0005, 5.0006, 5.0007,
(5,8), 5.0008, 5.0009, 5.001, 5.0011, 5.0012, 5.0013, 5.0014, 5.0015,
(5,16), 5.0016, 5.0017, 5.0018, 5.0019,
(6,0), 6, 6.0001, 6.0002, 6.0003, 6.0004, 6.0005, 6.0006, 6.0007,
(6,8), 6.0008, 6.0009, 6.001, 6.0011, 6.0012, 6.0013, 6.0014, 6.0015,
(6,16), 6.0016, 6.0017, 6.0018, 6.0019,
(7,0), 7, 7.0001, 7.0002, 7.0003, 7.0004, 7.0005, 7.0006, 7.0007,
(7,8), 7.0008, 7.0009, 7.001, 7.0011, 7.0012, 7.0013, 7.0014, 7.0015,
(7,16), 7.0016, 7.0017, 7.0018, 7.0019,
(8,0), 8, 8.0001, 8.0002, 8.0003, 8.0004, 8.0005, 8.0006, 8.0007,
(8,8), 8.0008, 8.0009, 8.001, 8.0011, 8.0012, 8.0013, 8.0014, 8.0015,
(8,16), 8.0016, 8.0017, 8.0018, 8.0019,
(9,0), 9, 9.0001, 9.0002, 9.0003, 9.0004, 9.0005, 9.0006, 9.0007,
(9,8), 9.0008, 9.0009, 9.001, 9.0011, 9.0012, 9.0013, 9.0014, 9.0015,
(9,16), 9.0016, 9.0017, 9.0018, 9.0019,
(10,0), 10, 10.0001, 10.0002, 10.0003, 10.0004, 10.0005, 10.0006,
(10,7), 10.0007, 10.0008, 10.0009, 10.001, 10.0011, 10.0012, 10.0013,
(10,14), 10.0014, 10.0015, 10.0016, 10.0017, 10.0018, 10.0019,
(11,0), 11, 11.0001, 11.0002, 11.0003, 11.0004, 11.0005, 11.0006,
(11,7), 11.0007, 11.0008, 11.0009, 11.001, 11.0011, 11.0012, 11.0013,
(11,14), 11.0014, 11.0015, 11.0016, 11.0017, 11.0018, 11.0019,
(12,0), 12, 12.0001, 12.0002, 12.0003, 12.0004, 12.0005, 12.0006,
(12,7), 12.0007, 12.0008, 12.0009, 12.001, 12.0011, 12.0012, 12.0013,
(12,14), 12.0014, 12.0015, 12.0016, 12.0017, 12.0018, 12.0019,
(13,0), 13, 13.0001, 13.0002, 13.0003, 13.0004, 13.0005, 13.0006,
(13,7), 13.0007, 13.0008, 13.0009, 13.001, 13.0011, 13.0012, 13.0013,
(13,14), 13.0014, 13.0015, 13.0016, 13.0017, 13.0018, 13.0019,
(14,0), 14, 14.0001, 14.0002, 14.0003, 14.0004, 14.0005, 14.0006,
(14,7), 14.0007, 14.0008, 14.0009, 14.001, 14.0011, 14.0012, 14.0013,
(14,14), 14.0014, 14.0015, 14.0016, 14.0017, 14.0018, 14.0019,
(15,0), 15, 15.0001, 15.0002, 15.0003, 15.0004, 15.0005, 15.0006,
(15,7), 15.0007, 15.0008, 15.0009, 15.001, 15.0011, 15.0012, 15.0013,
(15,14), 15.0014, 15.0015, 15.0016, 15.0017, 15.0018, 15.0019,
(16,0), 16, 16.0001, 16.0002, 16.0003, 16.0004, 16.0005, 16.0006,
(16,7), 16.0007, 16.0008, 16.0009, 16.001, 16.0011, 16.0012, 16.0013,
(16,14), 16.0014, 16.0015, 16.0016, 16.0017, 16.0018, 16.0019,
(17,0), 17, 17.0001, 17.0002, 17.0003, 17.0004, 17.0005, 17.0006,
(17,7), 17.0007, 17.0008, 17.0009, 17.001, 17.0011, 17.0012, 17.0013,
(17,14), 17.0014, 17.0015, 17.0016, 17.0017, 17.0018, 17.0019,
(18,0), 18, 18.0001, 18.0002, 18.0003, 18.0004, 18.0005, 18.0006,
(18,7), 18.0007, 18.0008, 18.0009, 18.001, 18.0011, 18.0012, 18.0013,
(18,14), 18.0014, 18.0015, 18.0016, 18.0017, 18.0018, 18.0019,
(19,0), 19, 19.0001, 19.0002, 19.0003, 19.0004, 19.0005, 19.0006,
(19,7), 19.0007, 19.0008, 19.0009, 19.001, 19.0011, 19.0012, 19.0013,
(19,14), 19.0014, 19.0015, 19.0016, 19.0017, 19.0018, 19.0019,
(20,0), 20, 20.0001, 20.0002, 20.0003, 20.0004, 20.0005, 20.0006,
(20,7), 20.0007, 20.0008, 20.0009, 20.001, 20.0011, 20.0012, 20.0013,
(20,14), 20.0014, 20.0015, 20.0016, 20.0017, 20.0018, 20.0019,
(21,0), 21, 21.0001, 21.0002, 21.0003, 21.0004, 21.0005, 21.0006,
(21,7), 21.0007, 21.0008, 21.0009, 21.001, 21.0011, 21.0012, 21.0013,
(21,14), 21.0014, 21.0015, 21.0016, 21.0017, 21.0018, 21.0019,
(22,0), 22, 22.0001, 22.0002, 22.0003, 22.0004, 22.0005, 22.0006,
(22,7), 22.0007, 22.0008, 22.0009, 22.001, 22.0011, 22.0012, 22.0013,
(22,14), 22.0014, 22.0015, 22.0016, 22.0017, 22.0018, 22.0019,
(23,0), 23, 23.0001, 23.0002, 23.0003, 23.0004, 23.0005, 23.0006,
(23,7), 23.0007, 23.0008, 23.0009, 23.001, 23.0011, 23.0012, 23.0013,
(23,14), 23.0014, 23.0015, 23.0016, 23.0017, 23.0018, 23.0019,
(24,0), 24, 24.0001, 24.0002, 24.0003, 24.0004, 24.0005, 24.0006,
(24,7), 24.0007, 24.0008, 24.0009, 24.001, 24.0011, 24.0012, 24.0013,
(24,14), 24.0014, 24.0015, 24.0016, 24.0017, 24.0018, 24.0019,
(25,0), 25, 25.0001, 25.0002, 25.0003, 25.0004, 25.0005, 25.0006,
(25,7), 25.0007, 25.0008, 25.0009, 25.001, 25.0011, 25.0012, 25.0013,
(25,14), 25.0014, 25.0015, 25.0016, 25.0017, 25.0018, 25.0019,
(26,0), 26, 26.0001, 26.0002, 26.0003, 26.0004, 26.0005, 26.0006,
(26,7), 26.0007, 26.0008, 26.0009, 26.001, 26.0011, 26.0012, 26.0013,
(26,14), 26.0014, 26.0015, 26.0016, 26.0017, 26.0018, 26.0019,
(27,0), 27, 27.0001, 27.0002, 27.0003, 27.0004, 27.0005, 27.0006,
(27,7), 27.0007, 27.0008, 27.0009, 27.001, 27.0011, 27.0012, 27.0013,
(27,14), 27.0014, 27.0015, 27.0016, 27.0017, 27.0018, 27.0019,
(28,0), 28, 28.0001, 28.0002, 28.0003, 28.0004, 28.0005, 28.0006,
(28,7), 28.0007, 28.0008, 28.0009, 28.001, 28.0011, 28.0012, 28.0013,
(28,14), 28.0014, 28.0015, 28.0016, 28.0017, 28.0018, 28.0019,
(29,0), 29, 29.0001, 29.0002, 29.0003, 29.0004, 29.0005, 29.0006,
(29,7), 29.0007, 29.0008, 29.0009, 29.001, 29.0011, 29.0012, 29.0013,
(29,14), 29.0014, 29.0015, 29.0016, 29.0017, 29.0018, 29.0019
(0,0): 0, 0.0001, 0.0002, 0.0003, 0.0004, 0.0005, 0.0006, 0.0007,
(0,8): 0.0008, 0.0009, 0.001, 0.0011, 0.0012, 0.0013, 0.0014, 0.0015,
(0,16): 0.0016, 0.0017, 0.0018, 0.0019,
(1,0): 1, 1.0001, 1.0002, 1.0003, 1.0004, 1.0005, 1.0006, 1.0007,
(1,8): 1.0008, 1.0009, 1.001, 1.0011, 1.0012, 1.0013, 1.0014, 1.0015,
(1,16): 1.0016, 1.0017, 1.0018, 1.0019,
(2,0): 2, 2.0001, 2.0002, 2.0003, 2.0004, 2.0005, 2.0006, 2.0007,
(2,8): 2.0008, 2.0009, 2.001, 2.0011, 2.0012, 2.0013, 2.0014, 2.0015,
(2,16): 2.0016, 2.0017, 2.0018, 2.0019,
(3,0): 3, 3.0001, 3.0002, 3.0003, 3.0004, 3.0005, 3.0006, 3.0007,
(3,8): 3.0008, 3.0009, 3.001, 3.0011, 3.0012, 3.0013, 3.0014, 3.0015,
(3,16): 3.0016, 3.0017, 3.0018, 3.0019,
(4,0): 4, 4.0001, 4.0002, 4.0003, 4.0004, 4.0005, 4.0006, 4.0007,
(4,8): 4.0008, 4.0009, 4.001, 4.0011, 4.0012, 4.0013, 4.0014, 4.0015,
(4,16): 4.0016, 4.0017, 4.0018, 4.0019,
(5,0): 5, 5.0001, 5.0002, 5.0003, 5.0004, 5.0005, 5.0006, 5.0007,
(5,8): 5.0008, 5.0009, 5.001, 5.0011, 5.0012, 5.0013, 5.0014, 5.0015,
(5,16): 5.0016, 5.0017, 5.0018, 5.0019,
(6,0): 6, 6.0001, 6.0002, 6.0003, 6.0004, 6.0005, 6.0006, 6.0007,
(6,8): 6.0008, 6.0009, 6.001, 6.0011, 6.0012, 6.0013, 6.0014, 6.0015,
(6,16): 6.0016, 6.0017, 6.0018, 6.0019,
(7,0): 7, 7.0001, 7.0002, 7.0003, 7.0004, 7.0005, 7.0006, 7.0007,
(7,8): 7.0008, 7.0009, 7.001, 7.0011, 7.0012, 7.0013, 7.0014, 7.0015,
(7,16): 7.0016, 7.0017, 7.0018, 7.0019,
(8,0): 8, 8.0001, 8.0002, 8.0003, 8.0004, 8.0005, 8.0006, 8.0007,
(8,8): 8.0008, 8.0009, 8.001, 8.0011, 8.0012, 8.0013, 8.0014, 8.0015,
(8,16): 8.0016, 8.0017, 8.0018, 8.0019,
(9,0): 9, 9.0001, 9.0002, 9.0003, 9.0004, 9.0005, 9.0006, 9.0007,
(9,8): 9.0008, 9.0009, 9.001, 9.0011, 9.0012, 9.0013, 9.0014, 9.0015,
(9,16): 9.0016, 9.0017, 9.0018, 9.0019,
(10,0): 10, 10.0001, 10.0002, 10.0003, 10.0004, 10.0005, 10.0006,
(10,7): 10.0007, 10.0008, 10.0009, 10.001, 10.0011, 10.0012, 10.0013,
(10,14): 10.0014, 10.0015, 10.0016, 10.0017, 10.0018, 10.0019,
(11,0): 11, 11.0001, 11.0002, 11.0003, 11.0004, 11.0005, 11.0006,
(11,7): 11.0007, 11.0008, 11.0009, 11.001, 11.0011, 11.0012, 11.0013,
(11,14): 11.0014, 11.0015, 11.0016, 11.0017, 11.0018, 11.0019,
(12,0): 12, 12.0001, 12.0002, 12.0003, 12.0004, 12.0005, 12.0006,
(12,7): 12.0007, 12.0008, 12.0009, 12.001, 12.0011, 12.0012, 12.0013,
(12,14): 12.0014, 12.0015, 12.0016, 12.0017, 12.0018, 12.0019,
(13,0): 13, 13.0001, 13.0002, 13.0003, 13.0004, 13.0005, 13.0006,
(13,7): 13.0007, 13.0008, 13.0009, 13.001, 13.0011, 13.0012, 13.0013,
(13,14): 13.0014, 13.0015, 13.0016, 13.0017, 13.0018, 13.0019,
(14,0): 14, 14.0001, 14.0002, 14.0003, 14.0004, 14.0005, 14.0006,
(14,7): 14.0007, 14.0008, 14.0009, 14.001, 14.0011, 14.0012, 14.0013,
(14,14): 14.0014, 14.0015, 14.0016, 14.0017, 14.0018, 14.0019,
(15,0): 15, 15.0001, 15.0002, 15.0003, 15.0004, 15.0005, 15.0006,
(15,7): 15.0007, 15.0008, 15.0009, 15.001, 15.0011, 15.0012, 15.0013,
(15,14): 15.0014, 15.0015, 15.0016, 15.0017, 15.0018, 15.0019,
(16,0): 16, 16.0001, 16.0002, 16.0003, 16.0004, 16.0005, 16.0006,
(16,7): 16.0007, 16.0008, 16.0009, 16.001, 16.0011, 16.0012, 16.0013,
(16,14): 16.0014, 16.0015, 16.0016, 16.0017, 16.0018, 16.0019,
(17,0): 17, 17.0001, 17.0002, 17.0003, 17.0004, 17.0005, 17.0006,
(17,7): 17.0007, 17.0008, 17.0009, 17.001, 17.0011, 17.0012, 17.0013,
(17,14): 17.0014, 17.0015, 17.0016, 17.0017, 17.0018, 17.0019,
(18,0): 18, 18.0001, 18.0002, 18.0003, 18.0004, 18.0005, 18.0006,
(18,7): 18.0007, 18.0008, 18.0009, 18.001, 18.0011, 18.0012, 18.0013,
(18,14): 18.0014, 18.0015, 18.0016, 18.0017, 18.0018, 18.0019,
(19,0): 19, 19.0001, 19.0002, 19.0003, 19.0004, 19.0005, 19.0006,
(19,7): 19.0007, 19.0008, 19.0009, 19.001, 19.0011, 19.0012, 19.0013,
(19,14): 19.0014, 19.0015, 19.0016, 19.0017, 19.0018, 19.0019,
(20,0): 20, 20.0001, 20.0002, 20.0003, 20.0004, 20.0005, 20.0006,
(20,7): 20.0007, 20.0008, 20.0009, 20.001, 20.0011, 20.0012, 20.0013,
(20,14): 20.0014, 20.0015, 20.0016, 20.0017, 20.0018, 20.0019,
(21,0): 21, 21.0001, 21.0002, 21.0003, 21.0004, 21.0005, 21.0006,
(21,7): 21.0007, 21.0008, 21.0009, 21.001, 21.0011, 21.0012, 21.0013,
(21,14): 21.0014, 21.0015, 21.0016, 21.0017, 21.0018, 21.0019,
(22,0): 22, 22.0001, 22.0002, 22.0003, 22.0004, 22.0005, 22.0006,
(22,7): 22.0007, 22.0008, 22.0009, 22.001, 22.0011, 22.0012, 22.0013,
(22,14): 22.0014, 22.0015, 22.0016, 22.0017, 22.0018, 22.0019,
(23,0): 23, 23.0001, 23.0002, 23.0003, 23.0004, 23.0005, 23.0006,
(23,7): 23.0007, 23.0008, 23.0009, 23.001, 23.0011, 23.0012, 23.0013,
(23,14): 23.0014, 23.0015, 23.0016, 23.0017, 23.0018, 23.0019,
(24,0): 24, 24.0001, 24.0002, 24.0003, 24.0004, 24.0005, 24.0006,
(24,7): 24.0007, 24.0008, 24.0009, 24.001, 24.0011, 24.0012, 24.0013,
(24,14): 24.0014, 24.0015, 24.0016, 24.0017, 24.0018, 24.0019,
(25,0): 25, 25.0001, 25.0002, 25.0003, 25.0004, 25.0005, 25.0006,
(25,7): 25.0007, 25.0008, 25.0009, 25.001, 25.0011, 25.0012, 25.0013,
(25,14): 25.0014, 25.0015, 25.0016, 25.0017, 25.0018, 25.0019,
(26,0): 26, 26.0001, 26.0002, 26.0003, 26.0004, 26.0005, 26.0006,
(26,7): 26.0007, 26.0008, 26.0009, 26.001, 26.0011, 26.0012, 26.0013,
(26,14): 26.0014, 26.0015, 26.0016, 26.0017, 26.0018, 26.0019,
(27,0): 27, 27.0001, 27.0002, 27.0003, 27.0004, 27.0005, 27.0006,
(27,7): 27.0007, 27.0008, 27.0009, 27.001, 27.0011, 27.0012, 27.0013,
(27,14): 27.0014, 27.0015, 27.0016, 27.0017, 27.0018, 27.0019,
(28,0): 28, 28.0001, 28.0002, 28.0003, 28.0004, 28.0005, 28.0006,
(28,7): 28.0007, 28.0008, 28.0009, 28.001, 28.0011, 28.0012, 28.0013,
(28,14): 28.0014, 28.0015, 28.0016, 28.0017, 28.0018, 28.0019,
(29,0): 29, 29.0001, 29.0002, 29.0003, 29.0004, 29.0005, 29.0006,
(29,7): 29.0007, 29.0008, 29.0009, 29.001, 29.0011, 29.0012, 29.0013,
(29,14): 29.0014, 29.0015, 29.0016, 29.0017, 29.0018, 29.0019
}
}
}

View File

@ -11,17 +11,17 @@ DATASET "/dset1" {
COUNT ( 9, 19 );
BLOCK ( 1, 1 );
DATA {
(0,0), 2, 3, 4, 5, 6, 7, 8, 9, 10, 3, 4, 5, 6, 7, 8, 9, 10, 11, 4, 5,
(0,2), 6, 7, 8, 9, 10, 11, 12, 5, 6, 7, 8, 9, 10, 11, 12, 13, 6, 7, 8,
(0,3), 9, 10, 11, 12, 13, 14, 7, 8, 9, 10, 11, 12, 13, 14, 15, 8, 9, 10,
(0,3), 11, 12, 13, 14, 15, 16, 9, 10, 11, 12, 13, 14, 15, 16, 17, 10,
(0,1), 11, 12, 13, 14, 15, 16, 17, 18, 11, 12, 13, 14, 15, 16, 17, 18,
(0,8), 19, 12, 13, 14, 15, 16, 17, 18, 19, 20, 13, 14, 15, 16, 17, 18,
(0,6), 19, 20, 21, 14, 15, 16, 17, 18, 19, 20, 21, 22, 15, 16, 17, 18,
(0,4), 19, 20, 21, 22, 23, 16, 17, 18, 19, 20, 21, 22, 23, 24, 17, 18,
(0,2), 19, 20, 21, 22, 23, 24, 25, 18, 19, 20, 21, 22, 23, 24, 25, 26,
(0,0), 19, 20, 21, 22, 23, 24, 25, 26, 27, 20, 21, 22, 23, 24, 25, 26,
(0,7), 27, 28
(0,0): 2, 3, 4, 5, 6, 7, 8, 9, 10, 3, 4, 5, 6, 7, 8, 9, 10, 11, 4, 5,
(0,2): 6, 7, 8, 9, 10, 11, 12, 5, 6, 7, 8, 9, 10, 11, 12, 13, 6, 7, 8,
(0,3): 9, 10, 11, 12, 13, 14, 7, 8, 9, 10, 11, 12, 13, 14, 15, 8, 9, 10,
(0,3): 11, 12, 13, 14, 15, 16, 9, 10, 11, 12, 13, 14, 15, 16, 17, 10,
(0,1): 11, 12, 13, 14, 15, 16, 17, 18, 11, 12, 13, 14, 15, 16, 17, 18,
(0,8): 19, 12, 13, 14, 15, 16, 17, 18, 19, 20, 13, 14, 15, 16, 17, 18,
(0,6): 19, 20, 21, 14, 15, 16, 17, 18, 19, 20, 21, 22, 15, 16, 17, 18,
(0,4): 19, 20, 21, 22, 23, 16, 17, 18, 19, 20, 21, 22, 23, 24, 17, 18,
(0,2): 19, 20, 21, 22, 23, 24, 25, 18, 19, 20, 21, 22, 23, 24, 25, 26,
(0,0): 19, 20, 21, 22, 23, 24, 25, 26, 27, 20, 21, 22, 23, 24, 25, 26,
(0,7): 27, 28
}
}
}

View File

@ -11,10 +11,10 @@ DATASET "/dset1" {
COUNT ( 4, 4 );
BLOCK ( 1, 4 );
DATA {
(0,0), 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 2, 3, 4, 5,
(0,4), 2, 3, 4, 5, 2, 3, 4, 5, 2, 3, 4, 5, 4, 5, 6, 7, 4, 5, 6, 7,
(0,8), 4, 5, 6, 7, 4, 5, 6, 7, 6, 7, 8, 9, 6, 7, 8, 9, 6, 7, 8, 9,
(0,12), 6, 7, 8, 9
(0,0): 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 2, 3, 4, 5,
(0,4): 2, 3, 4, 5, 2, 3, 4, 5, 2, 3, 4, 5, 4, 5, 6, 7, 4, 5, 6, 7,
(0,8): 4, 5, 6, 7, 4, 5, 6, 7, 6, 7, 8, 9, 6, 7, 8, 9, 6, 7, 8, 9,
(0,12): 6, 7, 8, 9
}
}
}

View File

@ -7,28 +7,28 @@ GROUP "/" {
DATATYPE H5T_VLEN { H5T_STD_I32LE}
DATASPACE SIMPLE { ( 4 ) / ( 4 ) }
DATA {
(0), (), (), (), ()
(0): (), (), (), ()
}
}
DATASET "Dataset2.0" {
DATATYPE H5T_STD_I32LE
DATASPACE SIMPLE { ( 4 ) / ( 4 ) }
DATA {
(0), 0, 0, 0, 0
(0): 0, 0, 0, 0
}
}
DATASET "Dataset3.0" {
DATATYPE H5T_IEEE_F32LE
DATASPACE SIMPLE { ( 4 ) / ( 4 ) }
DATA {
(0), 0, 0, 0, 0
(0): 0, 0, 0, 0
}
}
DATASET "Dataset4.0" {
DATATYPE H5T_ARRAY { [4] H5T_STD_I32LE }
DATASPACE SIMPLE { ( 4 ) / ( 4 ) }
DATA {
(0), [ 0, 0, 0, 0 ], [ 0, 0, 0, 0 ], [ 0, 0, 0, 0 ], [ 0, 0, 0, 0 ]
(0): [ 0, 0, 0, 0 ], [ 0, 0, 0, 0 ], [ 0, 0, 0, 0 ], [ 0, 0, 0, 0 ]
}
}
DATASET "Dataset5.0" {
@ -39,22 +39,22 @@ GROUP "/" {
}
DATASPACE SIMPLE { ( 4 ) / ( 4 ) }
DATA {
(0), {
(0): {
0,
0,
0
},
(1), {
(1): {
0,
0,
0
},
(2), {
(2): {
0,
0,
0
},
(3), {
(3): {
0,
0,
0

View File

@ -7,16 +7,16 @@ GROUP "/" {
DATATYPE H5T_STD_I32BE
DATASPACE SIMPLE { ( 10, 15 ) / ( 10, 15 ) }
DATA {
(0,0), 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
(1,0), 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
(2,0), 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
(3,0), 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
(4,0), 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
(5,0), 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
(6,0), 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
(7,0), 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
(8,0), 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
(9,0), 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23
(0,0): 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
(1,0): 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
(2,0): 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
(3,0): 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
(4,0): 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
(5,0): 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
(6,0): 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
(7,0): 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
(8,0): 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
(9,0): 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23
}
}
}

View File

@ -7,7 +7,7 @@ GROUP "/" {
DATATYPE H5T_STD_I32BE
DATASPACE SIMPLE { ( 5 ) / ( 5 ) }
DATA {
(0), 0, 1, 2, 3, 4
(0): 0, 1, 2, 3, 4
}
}
GROUP "g1" {

View File

@ -6,7 +6,7 @@ DATASET "/g1/dset2" {
DATATYPE H5T_STD_I32BE
DATASPACE SIMPLE { ( 5 ) / ( 5 ) }
DATA {
(0), 0, 1, 2, 3, 4
(0): 0, 1, 2, 3, 4
}
}
DATASET "/dset1" {

View File

@ -6,7 +6,7 @@ DATASET "/g1/g1.1/dset3" {
DATATYPE H5T_STD_I32BE
DATASPACE SIMPLE { ( 5 ) / ( 5 ) }
DATA {
(0), 0, 1, 2, 3, 4
(0): 0, 1, 2, 3, 4
}
}
DATASET "/g1/dset2" {

View File

@ -7,7 +7,7 @@ GROUP "/g1" {
DATATYPE H5T_STD_I32BE
DATASPACE SIMPLE { ( 5 ) / ( 5 ) }
DATA {
(0), 0, 1, 2, 3, 4
(0): 0, 1, 2, 3, 4
}
}
GROUP "g1.1" {

View File

@ -6,7 +6,7 @@ DATASET "/dset1" {
DATATYPE H5T_STD_I32BE
DATASPACE SIMPLE { ( 5 ) / ( 5 ) }
DATA {
(0), 0, 1, 2, 3, 4
(0): 0, 1, 2, 3, 4
}
}
GROUP "/g2" {

View File

@ -7,26 +7,26 @@ COMMENT "This is a dataset with compact storage"
DATATYPE H5T_STD_I32LE
DATASPACE SIMPLE { ( 20, 10 ) / ( 20, 10 ) }
DATA {
(0,0), 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
(1,0), 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
(2,0), 20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
(3,0), 30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
(4,0), 40, 41, 42, 43, 44, 45, 46, 47, 48, 49,
(5,0), 50, 51, 52, 53, 54, 55, 56, 57, 58, 59,
(6,0), 60, 61, 62, 63, 64, 65, 66, 67, 68, 69,
(7,0), 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
(8,0), 80, 81, 82, 83, 84, 85, 86, 87, 88, 89,
(9,0), 90, 91, 92, 93, 94, 95, 96, 97, 98, 99,
(10,0), 100, 101, 102, 103, 104, 105, 106, 107, 108, 109,
(11,0), 110, 111, 112, 113, 114, 115, 116, 117, 118, 119,
(12,0), 120, 121, 122, 123, 124, 125, 126, 127, 128, 129,
(13,0), 130, 131, 132, 133, 134, 135, 136, 137, 138, 139,
(14,0), 140, 141, 142, 143, 144, 145, 146, 147, 148, 149,
(15,0), 150, 151, 152, 153, 154, 155, 156, 157, 158, 159,
(16,0), 160, 161, 162, 163, 164, 165, 166, 167, 168, 169,
(17,0), 170, 171, 172, 173, 174, 175, 176, 177, 178, 179,
(18,0), 180, 181, 182, 183, 184, 185, 186, 187, 188, 189,
(19,0), 190, 191, 192, 193, 194, 195, 196, 197, 198, 199
(0,0): 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
(1,0): 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
(2,0): 20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
(3,0): 30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
(4,0): 40, 41, 42, 43, 44, 45, 46, 47, 48, 49,
(5,0): 50, 51, 52, 53, 54, 55, 56, 57, 58, 59,
(6,0): 60, 61, 62, 63, 64, 65, 66, 67, 68, 69,
(7,0): 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
(8,0): 80, 81, 82, 83, 84, 85, 86, 87, 88, 89,
(9,0): 90, 91, 92, 93, 94, 95, 96, 97, 98, 99,
(10,0): 100, 101, 102, 103, 104, 105, 106, 107, 108, 109,
(11,0): 110, 111, 112, 113, 114, 115, 116, 117, 118, 119,
(12,0): 120, 121, 122, 123, 124, 125, 126, 127, 128, 129,
(13,0): 130, 131, 132, 133, 134, 135, 136, 137, 138, 139,
(14,0): 140, 141, 142, 143, 144, 145, 146, 147, 148, 149,
(15,0): 150, 151, 152, 153, 154, 155, 156, 157, 158, 159,
(16,0): 160, 161, 162, 163, 164, 165, 166, 167, 168, 169,
(17,0): 170, 171, 172, 173, 174, 175, 176, 177, 178, 179,
(18,0): 180, 181, 182, 183, 184, 185, 186, 187, 188, 189,
(19,0): 190, 191, 192, 193, 194, 195, 196, 197, 198, 199
}
}
}

View File

@ -7,16 +7,16 @@ GROUP "/" {
DATATYPE H5T_STD_I32BE
DATASPACE SIMPLE { ( 10, 15 ) / ( 10, 15 ) }
DATA {
(0,0), 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
(1,0), 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
(2,0), 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
(3,0), 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
(4,0), 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
(5,0), 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
(6,0), 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
(7,0), 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
(8,0), 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
(9,0), 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23
(0,0): 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
(1,0): 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
(2,0): 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
(3,0): 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
(4,0): 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
(5,0): 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
(6,0): 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
(7,0): 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
(8,0): 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
(9,0): 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23
}
}
}

View File

@ -20,7 +20,7 @@ GROUP "/" {
}
DATASPACE SIMPLE { ( 10 ) / ( 10 ) }
DATA {
(0), {
(0): {
0,
0,
1,
@ -29,7 +29,7 @@ GROUP "/" {
[ -100, 100 ]
}
},
(1), {
(1): {
1,
1,
0.5,
@ -38,7 +38,7 @@ GROUP "/" {
[ -100, 100 ]
}
},
(2), {
(2): {
2,
4,
0.333333,
@ -47,7 +47,7 @@ GROUP "/" {
[ -100, 100 ]
}
},
(3), {
(3): {
3,
9,
0.25,
@ -56,7 +56,7 @@ GROUP "/" {
[ -100, 100 ]
}
},
(4), {
(4): {
4,
16,
0.2,
@ -65,7 +65,7 @@ GROUP "/" {
[ -100, 100 ]
}
},
(5), {
(5): {
5,
25,
0.166667,
@ -74,7 +74,7 @@ GROUP "/" {
[ -100, 100 ]
}
},
(6), {
(6): {
6,
36,
0.142857,
@ -83,7 +83,7 @@ GROUP "/" {
[ -100, 100 ]
}
},
(7), {
(7): {
7,
49,
0.125,
@ -92,7 +92,7 @@ GROUP "/" {
[ -100, 100 ]
}
},
(8), {
(8): {
8,
64,
0.111111,
@ -101,7 +101,7 @@ GROUP "/" {
[ -100, 100 ]
}
},
(9), {
(9): {
9,
81,
0.1,

View File

@ -6,7 +6,7 @@ DATASET "reference" {
DATATYPE H5T_REFERENCE
DATASPACE SIMPLE { ( 1 ) / ( 1 ) }
DATA {
(0), DATASET 60328 /g1/mydset
(0): DATASET 60328 /g1/mydset
}
}
}

File diff suppressed because it is too large Load Diff

View File

@ -19,16 +19,16 @@ GROUP "/" {
DATATYPE H5T_STD_I32BE
DATASPACE SIMPLE { ( 10, 15 ) / ( 10, 15 ) }
DATA {
(0,0), 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
(1,0), 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
(2,0), 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
(3,0), 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
(4,0), 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
(5,0), 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
(6,0), 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
(7,0), 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
(8,0), 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
(9,0), 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23
(0,0): 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
(1,0): 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
(2,0): 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
(3,0): 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
(4,0): 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
(5,0): 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
(6,0): 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
(7,0): 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
(8,0): 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
(9,0): 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23
}
}
}

View File

@ -15,239 +15,239 @@ GROUP "/" {
}
DATASPACE SIMPLE { ( 3, 6 ) / ( 3, 6 ) }
DATA {
(0,0), {
(0,0): {
[ 0, 1, 4, 9, 16, 25, 36, 49, 64, 81,
%s 1, 4, 9, 16, 25, 36, 49, 64, 81, 100,
%s 4, 9, 16, 25, 36, 49, 64, 81, 100, 121,
%s 9, 16, 25, 36, 49, 64, 81, 100, 121, 144,
%s 16, 25, 36, 49, 64, 81, 100, 121, 144, 169,
%s 25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
%s 36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
%s 49, 64, 81, 100, 121, 144, 169, 196, 225, 256 ],
1, 4, 9, 16, 25, 36, 49, 64, 81, 100,
4, 9, 16, 25, 36, 49, 64, 81, 100, 121,
9, 16, 25, 36, 49, 64, 81, 100, 121, 144,
16, 25, 36, 49, 64, 81, 100, 121, 144, 169,
25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
49, 64, 81, 100, 121, 144, 169, 196, 225, 256 ],
[ "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
},
(0,1), {
(0,1): {
[ 1, 4, 9, 16, 25, 36, 49, 64, 81, 100,
%s 4, 9, 16, 25, 36, 49, 64, 81, 100, 121,
%s 9, 16, 25, 36, 49, 64, 81, 100, 121, 144,
%s 16, 25, 36, 49, 64, 81, 100, 121, 144, 169,
%s 25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
%s 36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
%s 49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
%s 64, 81, 100, 121, 144, 169, 196, 225, 256, 289 ],
4, 9, 16, 25, 36, 49, 64, 81, 100, 121,
9, 16, 25, 36, 49, 64, 81, 100, 121, 144,
16, 25, 36, 49, 64, 81, 100, 121, 144, 169,
25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
64, 81, 100, 121, 144, 169, 196, 225, 256, 289 ],
[ "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
},
(0,2), {
(0,2): {
[ 4, 9, 16, 25, 36, 49, 64, 81, 100, 121,
%s 9, 16, 25, 36, 49, 64, 81, 100, 121, 144,
%s 16, 25, 36, 49, 64, 81, 100, 121, 144, 169,
%s 25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
%s 36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
%s 49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
%s 64, 81, 100, 121, 144, 169, 196, 225, 256, 289,
%s 81, 100, 121, 144, 169, 196, 225, 256, 289, 324 ],
9, 16, 25, 36, 49, 64, 81, 100, 121, 144,
16, 25, 36, 49, 64, 81, 100, 121, 144, 169,
25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
64, 81, 100, 121, 144, 169, 196, 225, 256, 289,
81, 100, 121, 144, 169, 196, 225, 256, 289, 324 ],
[ "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
},
(0,3), {
(0,3): {
[ 9, 16, 25, 36, 49, 64, 81, 100, 121, 144,
%s 16, 25, 36, 49, 64, 81, 100, 121, 144, 169,
%s 25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
%s 36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
%s 49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
%s 64, 81, 100, 121, 144, 169, 196, 225, 256, 289,
%s 81, 100, 121, 144, 169, 196, 225, 256, 289, 324,
%s 100, 121, 144, 169, 196, 225, 256, 289, 324, 361 ],
16, 25, 36, 49, 64, 81, 100, 121, 144, 169,
25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
64, 81, 100, 121, 144, 169, 196, 225, 256, 289,
81, 100, 121, 144, 169, 196, 225, 256, 289, 324,
100, 121, 144, 169, 196, 225, 256, 289, 324, 361 ],
[ "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
},
(0,4), {
(0,4): {
[ 16, 25, 36, 49, 64, 81, 100, 121, 144, 169,
%s 25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
%s 36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
%s 49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
%s 64, 81, 100, 121, 144, 169, 196, 225, 256, 289,
%s 81, 100, 121, 144, 169, 196, 225, 256, 289, 324,
%s 100, 121, 144, 169, 196, 225, 256, 289, 324, 361,
%s 121, 144, 169, 196, 225, 256, 289, 324, 361, 400 ],
25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
64, 81, 100, 121, 144, 169, 196, 225, 256, 289,
81, 100, 121, 144, 169, 196, 225, 256, 289, 324,
100, 121, 144, 169, 196, 225, 256, 289, 324, 361,
121, 144, 169, 196, 225, 256, 289, 324, 361, 400 ],
[ "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
},
(0,5), {
(0,5): {
[ 25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
%s 36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
%s 49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
%s 64, 81, 100, 121, 144, 169, 196, 225, 256, 289,
%s 81, 100, 121, 144, 169, 196, 225, 256, 289, 324,
%s 100, 121, 144, 169, 196, 225, 256, 289, 324, 361,
%s 121, 144, 169, 196, 225, 256, 289, 324, 361, 400,
%s 144, 169, 196, 225, 256, 289, 324, 361, 400, 441 ],
36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
64, 81, 100, 121, 144, 169, 196, 225, 256, 289,
81, 100, 121, 144, 169, 196, 225, 256, 289, 324,
100, 121, 144, 169, 196, 225, 256, 289, 324, 361,
121, 144, 169, 196, 225, 256, 289, 324, 361, 400,
144, 169, 196, 225, 256, 289, 324, 361, 400, 441 ],
[ "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
},
(1,0), {
(1,0): {
[ 0, 1, 4, 9, 16, 25, 36, 49, 64, 81,
%s 1, 4, 9, 16, 25, 36, 49, 64, 81, 100,
%s 4, 9, 16, 25, 36, 49, 64, 81, 100, 121,
%s 9, 16, 25, 36, 49, 64, 81, 100, 121, 144,
%s 16, 25, 36, 49, 64, 81, 100, 121, 144, 169,
%s 25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
%s 36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
%s 49, 64, 81, 100, 121, 144, 169, 196, 225, 256 ],
1, 4, 9, 16, 25, 36, 49, 64, 81, 100,
4, 9, 16, 25, 36, 49, 64, 81, 100, 121,
9, 16, 25, 36, 49, 64, 81, 100, 121, 144,
16, 25, 36, 49, 64, 81, 100, 121, 144, 169,
25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
49, 64, 81, 100, 121, 144, 169, 196, 225, 256 ],
[ "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
},
(1,1), {
(1,1): {
[ 1, 4, 9, 16, 25, 36, 49, 64, 81, 100,
%s 4, 9, 16, 25, 36, 49, 64, 81, 100, 121,
%s 9, 16, 25, 36, 49, 64, 81, 100, 121, 144,
%s 16, 25, 36, 49, 64, 81, 100, 121, 144, 169,
%s 25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
%s 36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
%s 49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
%s 64, 81, 100, 121, 144, 169, 196, 225, 256, 289 ],
4, 9, 16, 25, 36, 49, 64, 81, 100, 121,
9, 16, 25, 36, 49, 64, 81, 100, 121, 144,
16, 25, 36, 49, 64, 81, 100, 121, 144, 169,
25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
64, 81, 100, 121, 144, 169, 196, 225, 256, 289 ],
[ "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
},
(1,2), {
(1,2): {
[ 4, 9, 16, 25, 36, 49, 64, 81, 100, 121,
%s 9, 16, 25, 36, 49, 64, 81, 100, 121, 144,
%s 16, 25, 36, 49, 64, 81, 100, 121, 144, 169,
%s 25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
%s 36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
%s 49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
%s 64, 81, 100, 121, 144, 169, 196, 225, 256, 289,
%s 81, 100, 121, 144, 169, 196, 225, 256, 289, 324 ],
9, 16, 25, 36, 49, 64, 81, 100, 121, 144,
16, 25, 36, 49, 64, 81, 100, 121, 144, 169,
25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
64, 81, 100, 121, 144, 169, 196, 225, 256, 289,
81, 100, 121, 144, 169, 196, 225, 256, 289, 324 ],
[ "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
},
(1,3), {
(1,3): {
[ 9, 16, 25, 36, 49, 64, 81, 100, 121, 144,
%s 16, 25, 36, 49, 64, 81, 100, 121, 144, 169,
%s 25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
%s 36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
%s 49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
%s 64, 81, 100, 121, 144, 169, 196, 225, 256, 289,
%s 81, 100, 121, 144, 169, 196, 225, 256, 289, 324,
%s 100, 121, 144, 169, 196, 225, 256, 289, 324, 361 ],
16, 25, 36, 49, 64, 81, 100, 121, 144, 169,
25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
64, 81, 100, 121, 144, 169, 196, 225, 256, 289,
81, 100, 121, 144, 169, 196, 225, 256, 289, 324,
100, 121, 144, 169, 196, 225, 256, 289, 324, 361 ],
[ "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
},
(1,4), {
(1,4): {
[ 16, 25, 36, 49, 64, 81, 100, 121, 144, 169,
%s 25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
%s 36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
%s 49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
%s 64, 81, 100, 121, 144, 169, 196, 225, 256, 289,
%s 81, 100, 121, 144, 169, 196, 225, 256, 289, 324,
%s 100, 121, 144, 169, 196, 225, 256, 289, 324, 361,
%s 121, 144, 169, 196, 225, 256, 289, 324, 361, 400 ],
25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
64, 81, 100, 121, 144, 169, 196, 225, 256, 289,
81, 100, 121, 144, 169, 196, 225, 256, 289, 324,
100, 121, 144, 169, 196, 225, 256, 289, 324, 361,
121, 144, 169, 196, 225, 256, 289, 324, 361, 400 ],
[ "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
},
(1,5), {
(1,5): {
[ 25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
%s 36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
%s 49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
%s 64, 81, 100, 121, 144, 169, 196, 225, 256, 289,
%s 81, 100, 121, 144, 169, 196, 225, 256, 289, 324,
%s 100, 121, 144, 169, 196, 225, 256, 289, 324, 361,
%s 121, 144, 169, 196, 225, 256, 289, 324, 361, 400,
%s 144, 169, 196, 225, 256, 289, 324, 361, 400, 441 ],
36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
64, 81, 100, 121, 144, 169, 196, 225, 256, 289,
81, 100, 121, 144, 169, 196, 225, 256, 289, 324,
100, 121, 144, 169, 196, 225, 256, 289, 324, 361,
121, 144, 169, 196, 225, 256, 289, 324, 361, 400,
144, 169, 196, 225, 256, 289, 324, 361, 400, 441 ],
[ "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
},
(2,0), {
(2,0): {
[ 0, 1, 4, 9, 16, 25, 36, 49, 64, 81,
%s 1, 4, 9, 16, 25, 36, 49, 64, 81, 100,
%s 4, 9, 16, 25, 36, 49, 64, 81, 100, 121,
%s 9, 16, 25, 36, 49, 64, 81, 100, 121, 144,
%s 16, 25, 36, 49, 64, 81, 100, 121, 144, 169,
%s 25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
%s 36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
%s 49, 64, 81, 100, 121, 144, 169, 196, 225, 256 ],
1, 4, 9, 16, 25, 36, 49, 64, 81, 100,
4, 9, 16, 25, 36, 49, 64, 81, 100, 121,
9, 16, 25, 36, 49, 64, 81, 100, 121, 144,
16, 25, 36, 49, 64, 81, 100, 121, 144, 169,
25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
49, 64, 81, 100, 121, 144, 169, 196, 225, 256 ],
[ "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
},
(2,1), {
(2,1): {
[ 1, 4, 9, 16, 25, 36, 49, 64, 81, 100,
%s 4, 9, 16, 25, 36, 49, 64, 81, 100, 121,
%s 9, 16, 25, 36, 49, 64, 81, 100, 121, 144,
%s 16, 25, 36, 49, 64, 81, 100, 121, 144, 169,
%s 25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
%s 36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
%s 49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
%s 64, 81, 100, 121, 144, 169, 196, 225, 256, 289 ],
4, 9, 16, 25, 36, 49, 64, 81, 100, 121,
9, 16, 25, 36, 49, 64, 81, 100, 121, 144,
16, 25, 36, 49, 64, 81, 100, 121, 144, 169,
25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
64, 81, 100, 121, 144, 169, 196, 225, 256, 289 ],
[ "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
},
(2,2), {
(2,2): {
[ 4, 9, 16, 25, 36, 49, 64, 81, 100, 121,
%s 9, 16, 25, 36, 49, 64, 81, 100, 121, 144,
%s 16, 25, 36, 49, 64, 81, 100, 121, 144, 169,
%s 25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
%s 36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
%s 49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
%s 64, 81, 100, 121, 144, 169, 196, 225, 256, 289,
%s 81, 100, 121, 144, 169, 196, 225, 256, 289, 324 ],
9, 16, 25, 36, 49, 64, 81, 100, 121, 144,
16, 25, 36, 49, 64, 81, 100, 121, 144, 169,
25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
64, 81, 100, 121, 144, 169, 196, 225, 256, 289,
81, 100, 121, 144, 169, 196, 225, 256, 289, 324 ],
[ "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
},
(2,3), {
(2,3): {
[ 9, 16, 25, 36, 49, 64, 81, 100, 121, 144,
%s 16, 25, 36, 49, 64, 81, 100, 121, 144, 169,
%s 25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
%s 36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
%s 49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
%s 64, 81, 100, 121, 144, 169, 196, 225, 256, 289,
%s 81, 100, 121, 144, 169, 196, 225, 256, 289, 324,
%s 100, 121, 144, 169, 196, 225, 256, 289, 324, 361 ],
16, 25, 36, 49, 64, 81, 100, 121, 144, 169,
25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
64, 81, 100, 121, 144, 169, 196, 225, 256, 289,
81, 100, 121, 144, 169, 196, 225, 256, 289, 324,
100, 121, 144, 169, 196, 225, 256, 289, 324, 361 ],
[ "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
},
(2,4), {
(2,4): {
[ 16, 25, 36, 49, 64, 81, 100, 121, 144, 169,
%s 25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
%s 36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
%s 49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
%s 64, 81, 100, 121, 144, 169, 196, 225, 256, 289,
%s 81, 100, 121, 144, 169, 196, 225, 256, 289, 324,
%s 100, 121, 144, 169, 196, 225, 256, 289, 324, 361,
%s 121, 144, 169, 196, 225, 256, 289, 324, 361, 400 ],
25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
64, 81, 100, 121, 144, 169, 196, 225, 256, 289,
81, 100, 121, 144, 169, 196, 225, 256, 289, 324,
100, 121, 144, 169, 196, 225, 256, 289, 324, 361,
121, 144, 169, 196, 225, 256, 289, 324, 361, 400 ],
[ "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
},
(2,5), {
(2,5): {
[ 25, 36, 49, 64, 81, 100, 121, 144, 169, 196,
%s 36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
%s 49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
%s 64, 81, 100, 121, 144, 169, 196, 225, 256, 289,
%s 81, 100, 121, 144, 169, 196, 225, 256, 289, 324,
%s 100, 121, 144, 169, 196, 225, 256, 289, 324, 361,
%s 121, 144, 169, 196, 225, 256, 289, 324, 361, 400,
%s 144, 169, 196, 225, 256, 289, 324, 361, 400, 441 ],
36, 49, 64, 81, 100, 121, 144, 169, 196, 225,
49, 64, 81, 100, 121, 144, 169, 196, 225, 256,
64, 81, 100, 121, 144, 169, 196, 225, 256, 289,
81, 100, 121, 144, 169, 196, 225, 256, 289, 324,
100, 121, 144, 169, 196, 225, 256, 289, 324, 361,
121, 144, 169, 196, 225, 256, 289, 324, 361, 400,
144, 169, 196, 225, 256, 289, 324, 361, 400, 441 ],
[ "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
%s "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678",
"abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678", "abcdefgh12345678abcdefgh12345678" ]
}
}
}
@ -260,9 +260,9 @@ GROUP "/" {
}
DATASPACE SIMPLE { ( 3, 4 ) / ( 3, 4 ) }
DATA {
(0,0), "s1", "s2", "s3", "s4",
(1,0), "s5", "s6", "s7", "s8",
(2,0), "s9", "s0", "s1", "s2"
(0,0): "s1", "s2", "s3", "s4",
(1,0): "s5", "s6", "s7", "s8",
(2,0): "s9", "s0", "s1", "s2"
}
}
DATASET "string2" {
@ -274,11 +274,11 @@ GROUP "/" {
}
DATASPACE SIMPLE { ( 20 ) / ( 20 ) }
DATA {
(0), "ab cd ef1 ", "ab cd ef2 ", "ab cd ef3 ", "ab cd ef4 ",
(4), "ab cd ef5 ", "ab cd ef6 ", "ab cd ef7 ", "ab cd ef8 ",
(8), "ab cd ef9 ", "ab cd ef0 ", "ab cd ef1 ", "ab cd ef2 ",
(12), "ab cd ef3 ", "ab cd ef4 ", "ab cd ef5 ", "ab cd ef6 ",
(16), "ab cd ef7 ", "ab cd ef8 ", "ab cd ef9 ", "ab cd ef0 "
(0): "ab cd ef1 ", "ab cd ef2 ", "ab cd ef3 ", "ab cd ef4 ",
(4): "ab cd ef5 ", "ab cd ef6 ", "ab cd ef7 ", "ab cd ef8 ",
(8): "ab cd ef9 ", "ab cd ef0 ", "ab cd ef1 ", "ab cd ef2 ",
(12): "ab cd ef3 ", "ab cd ef4 ", "ab cd ef5 ", "ab cd ef6 ",
(16): "ab cd ef7 ", "ab cd ef8 ", "ab cd ef9 ", "ab cd ef0 "
}
}
DATASET "string3" {
@ -290,15 +290,15 @@ GROUP "/" {
}
DATASPACE SIMPLE { ( 27 ) / ( 27 ) }
DATA {
(0), "abcd0\000\000\000", "abcd1\000\000\000", "abcd2\000\000\000",
(3), "abcd3\000\000\000", "abcd4\000\000\000", "abcd5\000\000\000",
(6), "abcd6\000\000\000", "abcd7\000\000\000", "abcd8\000\000\000",
(9), "abcd9\000\000\000", "abcd0\000\000\000", "abcd1\000\000\000",
(12), "abcd2\000\000\000", "abcd3\000\000\000", "abcd4\000\000\000",
(15), "abcd5\000\000\000", "abcd6\000\000\000", "abcd7\000\000\000",
(18), "abcd8\000\000\000", "abcd9\000\000\000", "abcd0\000\000\000",
(21), "abcd1\000\000\000", "abcd2\000\000\000", "abcd3\000\000\000",
(24), "abcd4\000\000\000", "abcd5\000\000\000", "abcd6\000\000\000"
(0): "abcd0\000\000\000", "abcd1\000\000\000", "abcd2\000\000\000",
(3): "abcd3\000\000\000", "abcd4\000\000\000", "abcd5\000\000\000",
(6): "abcd6\000\000\000", "abcd7\000\000\000", "abcd8\000\000\000",
(9): "abcd9\000\000\000", "abcd0\000\000\000", "abcd1\000\000\000",
(12): "abcd2\000\000\000", "abcd3\000\000\000", "abcd4\000\000\000",
(15): "abcd5\000\000\000", "abcd6\000\000\000", "abcd7\000\000\000",
(18): "abcd8\000\000\000", "abcd9\000\000\000", "abcd0\000\000\000",
(21): "abcd1\000\000\000", "abcd2\000\000\000", "abcd3\000\000\000",
(24): "abcd4\000\000\000", "abcd5\000\000\000", "abcd6\000\000\000"
}
}
DATASET "string4" {
@ -310,9 +310,9 @@ GROUP "/" {
}
DATASPACE SIMPLE { ( 3 ) / ( 3 ) }
DATA {
(0), "s1234567890123456789 ",
(1), "s1234567890123456789 ",
(2), "s1234567890123456789 "
(0): "s1234567890123456789 ",
(1): "s1234567890123456789 ",
(2): "s1234567890123456789 "
}
}
}

View File

@ -13,16 +13,16 @@ GROUP "/" {
}
DATASPACE SIMPLE { ( 10 ) / ( 10 ) }
DATA {
(0), "This is row 0 of type H5T_STR_NULLTERM of",
(1), "This is row 1 of type H5T_STR_NULLTERM of",
(2), "This is row 2 of type H5T_STR_NULLTERM of",
(3), "This is row 3 of type H5T_STR_NULLTERM of",
(4), "This is row 4 of type H5T_STR_NULLTERM of",
(5), "This is row 5 of type H5T_STR_NULLTERM of",
(6), "This is row 6 of type H5T_STR_NULLTERM of",
(7), "This is row 7 of type H5T_STR_NULLTERM of",
(8), "This is row 8 of type H5T_STR_NULLTERM of",
(9), "This is row 9 of type H5T_STR_NULLTERM of"
(0): "This is row 0 of type H5T_STR_NULLTERM of",
(1): "This is row 1 of type H5T_STR_NULLTERM of",
(2): "This is row 2 of type H5T_STR_NULLTERM of",
(3): "This is row 3 of type H5T_STR_NULLTERM of",
(4): "This is row 4 of type H5T_STR_NULLTERM of",
(5): "This is row 5 of type H5T_STR_NULLTERM of",
(6): "This is row 6 of type H5T_STR_NULLTERM of",
(7): "This is row 7 of type H5T_STR_NULLTERM of",
(8): "This is row 8 of type H5T_STR_NULLTERM of",
(9): "This is row 9 of type H5T_STR_NULLTERM of"
}
ATTRIBUTE "attr1" {
DATATYPE H5T_STRING {
@ -33,7 +33,7 @@ GROUP "/" {
}
DATASPACE SIMPLE { ( 3 ) / ( 3 ) }
DATA {
(0), "0123456789", "abcdefghij", "ABCDEFGHIJ"
(0): "0123456789", "abcdefghij", "ABCDEFGHIJ"
}
}
}
@ -48,16 +48,16 @@ GROUP "/" {
}
DATASPACE SIMPLE { ( 10 ) / ( 10 ) }
DATA {
(0), "This is row 0 of type H5T_STR_NULLTERM of string ",
(1), "This is row 1 of type H5T_STR_NULLTERM of string ",
(2), "This is row 2 of type H5T_STR_NULLTERM of string ",
(3), "This is row 3 of type H5T_STR_NULLTERM of string ",
(4), "This is row 4 of type H5T_STR_NULLTERM of string ",
(5), "This is row 5 of type H5T_STR_NULLTERM of string ",
(6), "This is row 6 of type H5T_STR_NULLTERM of string ",
(7), "This is row 7 of type H5T_STR_NULLTERM of string ",
(8), "This is row 8 of type H5T_STR_NULLTERM of string ",
(9), "This is row 9 of type H5T_STR_NULLTERM of string "
(0): "This is row 0 of type H5T_STR_NULLTERM of string ",
(1): "This is row 1 of type H5T_STR_NULLTERM of string ",
(2): "This is row 2 of type H5T_STR_NULLTERM of string ",
(3): "This is row 3 of type H5T_STR_NULLTERM of string ",
(4): "This is row 4 of type H5T_STR_NULLTERM of string ",
(5): "This is row 5 of type H5T_STR_NULLTERM of string ",
(6): "This is row 6 of type H5T_STR_NULLTERM of string ",
(7): "This is row 7 of type H5T_STR_NULLTERM of string ",
(8): "This is row 8 of type H5T_STR_NULLTERM of string ",
(9): "This is row 9 of type H5T_STR_NULLTERM of string "
}
}
}
@ -71,16 +71,16 @@ GROUP "/" {
}
DATASPACE SIMPLE { ( 10 ) / ( 10 ) }
DATA {
(0), "This is row 0 of type H5T_STR_NULLPAD of\000\000\000\000\000\000\000\000\000\000",
(1), "This is row 1 of type H5T_STR_NULLPAD of\000\000\000\000\000\000\000\000\000\000",
(2), "This is row 2 of type H5T_STR_NULLPAD of\000\000\000\000\000\000\000\000\000\000",
(3), "This is row 3 of type H5T_STR_NULLPAD of\000\000\000\000\000\000\000\000\000\000",
(4), "This is row 4 of type H5T_STR_NULLPAD of\000\000\000\000\000\000\000\000\000\000",
(5), "This is row 5 of type H5T_STR_NULLPAD of\000\000\000\000\000\000\000\000\000\000",
(6), "This is row 6 of type H5T_STR_NULLPAD of\000\000\000\000\000\000\000\000\000\000",
(7), "This is row 7 of type H5T_STR_NULLPAD of\000\000\000\000\000\000\000\000\000\000",
(8), "This is row 8 of type H5T_STR_NULLPAD of\000\000\000\000\000\000\000\000\000\000",
(9), "This is row 9 of type H5T_STR_NULLPAD of\000\000\000\000\000\000\000\000\000\000"
(0): "This is row 0 of type H5T_STR_NULLPAD of\000\000\000\000\000\000\000\000\000\000",
(1): "This is row 1 of type H5T_STR_NULLPAD of\000\000\000\000\000\000\000\000\000\000",
(2): "This is row 2 of type H5T_STR_NULLPAD of\000\000\000\000\000\000\000\000\000\000",
(3): "This is row 3 of type H5T_STR_NULLPAD of\000\000\000\000\000\000\000\000\000\000",
(4): "This is row 4 of type H5T_STR_NULLPAD of\000\000\000\000\000\000\000\000\000\000",
(5): "This is row 5 of type H5T_STR_NULLPAD of\000\000\000\000\000\000\000\000\000\000",
(6): "This is row 6 of type H5T_STR_NULLPAD of\000\000\000\000\000\000\000\000\000\000",
(7): "This is row 7 of type H5T_STR_NULLPAD of\000\000\000\000\000\000\000\000\000\000",
(8): "This is row 8 of type H5T_STR_NULLPAD of\000\000\000\000\000\000\000\000\000\000",
(9): "This is row 9 of type H5T_STR_NULLPAD of\000\000\000\000\000\000\000\000\000\000"
}
}
}
@ -94,16 +94,16 @@ GROUP "/" {
}
DATASPACE SIMPLE { ( 10 ) / ( 10 ) }
DATA {
(0), "This is row 0 of type H5T_STR_NULLPAD of string ar",
(1), "This is row 1 of type H5T_STR_NULLPAD of string ar",
(2), "This is row 2 of type H5T_STR_NULLPAD of string ar",
(3), "This is row 3 of type H5T_STR_NULLPAD of string ar",
(4), "This is row 4 of type H5T_STR_NULLPAD of string ar",
(5), "This is row 5 of type H5T_STR_NULLPAD of string ar",
(6), "This is row 6 of type H5T_STR_NULLPAD of string ar",
(7), "This is row 7 of type H5T_STR_NULLPAD of string ar",
(8), "This is row 8 of type H5T_STR_NULLPAD of string ar",
(9), "This is row 9 of type H5T_STR_NULLPAD of string ar"
(0): "This is row 0 of type H5T_STR_NULLPAD of string ar",
(1): "This is row 1 of type H5T_STR_NULLPAD of string ar",
(2): "This is row 2 of type H5T_STR_NULLPAD of string ar",
(3): "This is row 3 of type H5T_STR_NULLPAD of string ar",
(4): "This is row 4 of type H5T_STR_NULLPAD of string ar",
(5): "This is row 5 of type H5T_STR_NULLPAD of string ar",
(6): "This is row 6 of type H5T_STR_NULLPAD of string ar",
(7): "This is row 7 of type H5T_STR_NULLPAD of string ar",
(8): "This is row 8 of type H5T_STR_NULLPAD of string ar",
(9): "This is row 9 of type H5T_STR_NULLPAD of string ar"
}
}
}
@ -117,16 +117,16 @@ GROUP "/" {
}
DATASPACE SIMPLE { ( 10 ) / ( 10 ) }
DATA {
(0), "This is row 0 of type H5T_STR_SPACEPAD of ",
(1), "This is row 1 of type H5T_STR_SPACEPAD of ",
(2), "This is row 2 of type H5T_STR_SPACEPAD of ",
(3), "This is row 3 of type H5T_STR_SPACEPAD of ",
(4), "This is row 4 of type H5T_STR_SPACEPAD of ",
(5), "This is row 5 of type H5T_STR_SPACEPAD of ",
(6), "This is row 6 of type H5T_STR_SPACEPAD of ",
(7), "This is row 7 of type H5T_STR_SPACEPAD of ",
(8), "This is row 8 of type H5T_STR_SPACEPAD of ",
(9), "This is row 9 of type H5T_STR_SPACEPAD of "
(0): "This is row 0 of type H5T_STR_SPACEPAD of ",
(1): "This is row 1 of type H5T_STR_SPACEPAD of ",
(2): "This is row 2 of type H5T_STR_SPACEPAD of ",
(3): "This is row 3 of type H5T_STR_SPACEPAD of ",
(4): "This is row 4 of type H5T_STR_SPACEPAD of ",
(5): "This is row 5 of type H5T_STR_SPACEPAD of ",
(6): "This is row 6 of type H5T_STR_SPACEPAD of ",
(7): "This is row 7 of type H5T_STR_SPACEPAD of ",
(8): "This is row 8 of type H5T_STR_SPACEPAD of ",
(9): "This is row 9 of type H5T_STR_SPACEPAD of "
}
}
}
@ -140,16 +140,16 @@ GROUP "/" {
}
DATASPACE SIMPLE { ( 10 ) / ( 10 ) }
DATA {
(0), "This is row 0 of type H5T_STR_SPACEPAD of string a",
(1), "This is row 1 of type H5T_STR_SPACEPAD of string a",
(2), "This is row 2 of type H5T_STR_SPACEPAD of string a",
(3), "This is row 3 of type H5T_STR_SPACEPAD of string a",
(4), "This is row 4 of type H5T_STR_SPACEPAD of string a",
(5), "This is row 5 of type H5T_STR_SPACEPAD of string a",
(6), "This is row 6 of type H5T_STR_SPACEPAD of string a",
(7), "This is row 7 of type H5T_STR_SPACEPAD of string a",
(8), "This is row 8 of type H5T_STR_SPACEPAD of string a",
(9), "This is row 9 of type H5T_STR_SPACEPAD of string a"
(0): "This is row 0 of type H5T_STR_SPACEPAD of string a",
(1): "This is row 1 of type H5T_STR_SPACEPAD of string a",
(2): "This is row 2 of type H5T_STR_SPACEPAD of string a",
(3): "This is row 3 of type H5T_STR_SPACEPAD of string a",
(4): "This is row 4 of type H5T_STR_SPACEPAD of string a",
(5): "This is row 5 of type H5T_STR_SPACEPAD of string a",
(6): "This is row 6 of type H5T_STR_SPACEPAD of string a",
(7): "This is row 7 of type H5T_STR_SPACEPAD of string a",
(8): "This is row 8 of type H5T_STR_SPACEPAD of string a",
(9): "This is row 9 of type H5T_STR_SPACEPAD of string a"
}
}
}

View File

@ -11,7 +11,7 @@ DATASET "string" {
}
DATASPACE SIMPLE { ( 1 ) / ( 1 ) }
DATA {
(0), "quote " backspace form feed new line
(0): "quote " backspace form feed new line
tab new line
carriage return
"

View File

@ -11,7 +11,7 @@ DATASET "string" {
}
DATASPACE SIMPLE { ( 1 ) / ( 1 ) }
DATA {
(0), "quote \" backspace\b form feed\f new line\n tab\t new line\n carriage return\r"
(0): "quote \" backspace\b form feed\f new line\n tab\t new line\n carriage return\r"
}
}
}

View File

@ -7,21 +7,21 @@ GROUP "/" {
DATATYPE H5T_VLEN { H5T_STD_I32LE}
DATASPACE SIMPLE { ( 4 ) / ( 4 ) }
DATA {
(0), (0), (10, 11), (20, 21, 22), (30, 31, 32, 33)
(0): (0), (10, 11), (20, 21, 22), (30, 31, 32, 33)
}
}
DATASET "Dataset2.0" {
DATATYPE H5T_VLEN { H5T_IEEE_F32LE}
DATASPACE SIMPLE { ( 4 ) / ( 4 ) }
DATA {
(0), (0), (10, 10.1), (20, 20.1, 20.2), (30, 30.1, 30.2, 30.3)
(0): (0), (10, 10.1), (20, 20.1, 20.2), (30, 30.1, 30.2, 30.3)
}
}
DATASET "Dataset3.0" {
DATATYPE H5T_VLEN { H5T_STD_I32LE}
DATASPACE SCALAR
DATA {
(0), (0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72)
(0): (0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72)
}
}
}

View File

@ -7,8 +7,8 @@ GROUP "/" {
DATATYPE H5T_VLEN { H5T_VLEN { H5T_STD_U32LE}}
DATASPACE SIMPLE { ( 4 ) / ( 4 ) }
DATA {
(0), ((0)), ((100), (110, 111)), ((200), (210, 211), (220, 221, 222)),
(3), ((300), (310, 311), (320, 321, 322), (330, 331, 332, 333))
(0): ((0)), ((100), (110, 111)), ((200), (210, 211), (220, 221, 222)),
(3): ((300), (310, 311), (320, 321, 322), (330, 331, 332, 333))
}
}
}

View File

@ -11,22 +11,22 @@ GROUP "/" {
}
DATASPACE SIMPLE { ( 4 ) / ( 4 ) }
DATA {
(0), {
(0): {
0,
0,
(0)
},
(1), {
(1): {
10,
6.66667,
(10, 11)
},
(2), {
(2): {
20,
13.3333,
(20, 21, 22)
},
(3), {
(3): {
30,
20,
(30, 31, 32, 33)

View File

@ -10,18 +10,18 @@ GROUP "/" {
}}
DATASPACE SIMPLE { ( 4 ) / ( 4 ) }
DATA {
(0), ({
(0): ({
0,
0
}),
(1), ({
(1): ({
10,
6.66667
}, {
11,
7
}),
(2), ({
(2): ({
20,
13.3333
}, {
@ -31,7 +31,7 @@ GROUP "/" {
22,
14
}),
(3), ({
(3): ({
30,
20
}, {

View File

@ -7,7 +7,7 @@ GROUP "/" {
DATATYPE H5T_VLEN { H5T_STD_U32LE}
DATASPACE SIMPLE { ( 4 ) / ( 4 ) }
DATA {
(0), (0, 2, 4, 6, 8), (), (0, 2, 4, 6, 8, 10, 12), ()
(0): (0, 2, 4, 6, 8), (), (0, 2, 4, 6, 8, 10, 12), ()
}
}
}

View File

@ -19,9 +19,9 @@ GROUP "/" {
}
DATASPACE SIMPLE { ( 4 ) / ( 4 ) }
DATA {
(0), "Four score and seven years ago our forefathers brought forth on this continent a new nation,",
(1), "conceived in liberty and dedicated to the proposition that all men are created equal.",
(2), "", NULL
(0): "Four score and seven years ago our forefathers brought forth on this continent a new nation,",
(1): "conceived in liberty and dedicated to the proposition that all men are created equal.",
(2): "", NULL
}
}
DATATYPE "vl_string_type" H5T_STRING {