renamed 'rebuild_internal_structs()' to 'update_internal_structs()'

This commit is contained in:
2010-05-28 09:12:40 +00:00
parent d526ebb484
commit 052041715d
4 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -297,7 +297,7 @@ read_elems (
TRY( h5tpriv_rebuild_global_2_local_map_of_elems (f) );
TRY( build_elems_ldta (f) );
TRY( (*t->methods.adjacency->rebuild_internal_structs)(f) );
TRY( (*t->methods.adjacency->update_internal_structs)(f) );
return H5_SUCCESS;
}
+2 -2
View File
@@ -82,7 +82,7 @@ compute_tets_of_triangles (
}
static h5_err_t
rebuild_internal_structs (
update_internal_structs (
h5_file_t * const f
) {
clock_t t1 = clock();
@@ -693,7 +693,7 @@ release_internal_structs (
}
struct h5t_adjacency_methods h5tpriv_tetm_adjacency_methods = {
rebuild_internal_structs,
update_internal_structs,
release_internal_structs,
get_edges_upadjacent_to_vertex,
get_triangles_upadjacent_to_vertex,
+3 -3
View File
@@ -69,7 +69,7 @@ compute_elems_of_edges (
}
static h5_err_t
rebuild_internal_structs (
update_internal_structs (
h5_file_t * const f
) {
clock_t t1 = clock();
@@ -346,7 +346,7 @@ get_edges_downadjacent_to_triangle (
h5tpriv_build_edge_id (face_idx, elem_idx),
children) );
}
TRY ( h5priv_alloc_idlist (f, list, 8) );
- TRY ( h5priv_alloc_idlist (f, list, 8) );
h5_id_t *edge_idp = children->items;
int i;
for (i = 0; i < children->num_items; i++, edge_idp++) {
@@ -366,7 +366,7 @@ release_internal_structs (
}
struct h5t_adjacency_methods h5tpriv_trim_adjacency_methods = {
rebuild_internal_structs,
update_internal_structs,
release_internal_structs,
get_edges_upadjacent_to_vertex,
get_triangles_upadjacent_to_vertex,
+1 -1
View File
@@ -12,7 +12,7 @@ struct h5t_retrieve_methods {
};
struct h5t_adjacency_methods {
h5_err_t (*rebuild_internal_structs)(h5_file_t * const);
h5_err_t (*update_internal_structs)(h5_file_t * const);
h5_err_t (*release_internal_structs)(h5_file_t * const);
h5_err_t (*get_edges_upadjacent_to_vertex)(
h5_file_t * const, const h5_id_t, h5_idlist_t**);