remove dbg output

This commit is contained in:
2011-08-11 11:24:26 +00:00
parent 7dc3981621
commit e23aeea0ef
+4 -4
View File
@@ -582,13 +582,13 @@ update_internal_structs (
clock_t t1 = clock();
TRY( compute_elems_of_vertices (f, from_lvl) );
clock_t t2 = clock();
fprintf (stderr, "compute_elems_of_vertices(): %f\n",
(float)(t2-t1)/CLOCKS_PER_SEC);
// fprintf (stderr, "compute_elems_of_vertices(): %f\n",
// (float)(t2-t1)/CLOCKS_PER_SEC);
t1 = clock();
TRY( compute_elems_of_edges (f, from_lvl ) );
t2 = clock();
fprintf (stderr, "compute_elems_of_edge(): %f\n",
(float)(t2-t1)/CLOCKS_PER_SEC);
// fprintf (stderr, "compute_elems_of_edge(): %f\n",
// (float)(t2-t1)/CLOCKS_PER_SEC);
h5_debug ("%s (%lld): done", __func__, (long long)from_lvl);
H5_PRIV_FUNC_RETURN (H5_SUCCESS);
}