diff --git a/test/h5t/simple_tet.c b/test/h5t/simple_tet.c index ebdaf80..7247ec0 100644 --- a/test/h5t/simple_tet.c +++ b/test/h5t/simple_tet.c @@ -11,6 +11,7 @@ #endif struct vertex { + h5_id_t global_id; h5_float64_t P[3]; }; @@ -25,15 +26,15 @@ typedef struct tet tet_t; vertex_t V0[5] = { - { {-1.0, 0.0, 0.0} }, - { { 1.0, 0.0, 0.0} }, - { { 0.0, 1.0, 0.0} }, - { { 0.0, 0.0, 1.0} }, - { { 0.0, -1.0, 0.0} } + { 0, {-1.0, 0.0, 0.0} }, + { 1, { 1.0, 0.0, 0.0} }, + { 2, { 0.0, 1.0, 0.0} }, + { 3, { 0.0, 0.0, 1.0} }, + { 4, { 0.0, -1.0, 0.0} } }; vertex_t V1[1] = { - {{ 0.0, 0.0, 0.0 }} + { 5, {0.0, 0.0, 0.0 } } }; tet_t T0[2] = { @@ -70,7 +71,7 @@ add_level ( for ( i = 0; i