From 5f800b8882fb558d49ade6b476505ea3705782c4 Mon Sep 17 00:00:00 2001 From: Ishaan Desai Date: Fri, 25 Aug 2023 14:26:53 -0400 Subject: [PATCH] Remove experimental warning for direct mesh access functions --- cyprecice/cyprecice.pyx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cyprecice/cyprecice.pyx b/cyprecice/cyprecice.pyx index d8c08d7e..a2897186 100644 --- a/cyprecice/cyprecice.pyx +++ b/cyprecice/cyprecice.pyx @@ -997,8 +997,6 @@ cdef class Participant: 0.5, i.e. the defined access region as computed through the involved provided mesh is by 50% enlarged. """ - warnings.warn("The function set_mesh_access_region is still experimental.") - check_array_like(bounding_box, "bounding_box", "set_mesh_access_region") if not isinstance(bounding_box, np.ndarray): @@ -1030,8 +1028,6 @@ cdef class Participant: coordinates : numpy.ndarray he coordinates associated to the IDs and corresponding data values (dim * size) """ - warnings.warn("The function get_mesh_vertices_and_ids is still experimental.") - size = self.get_mesh_vertex_size(mesh_name) dimensions = self.get_mesh_dimensions(mesh_name)