summaryrefslogtreecommitdiff
path: root/src/python/gudhi
diff options
context:
space:
mode:
authorVincent Rouvreau <vincent.rouvreau@inria.fr>2022-04-05 13:35:11 +0200
committerVincent Rouvreau <vincent.rouvreau@inria.fr>2022-04-05 13:35:11 +0200
commit25172af7cbe5a3ea3017bed6fde53be471a7e4bf (patch)
tree36aaa5d186b768f13f44666459bdc676f55daa4c /src/python/gudhi
parentf4b543bb4891b1c2aa104e45cc5a0d07b56e6977 (diff)
nogil for float_relative_precision methods
Diffstat (limited to 'src/python/gudhi')
-rw-r--r--src/python/gudhi/alpha_complex.pyx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/python/gudhi/alpha_complex.pyx b/src/python/gudhi/alpha_complex.pyx
index e63796db..375e1561 100644
--- a/src/python/gudhi/alpha_complex.pyx
+++ b/src/python/gudhi/alpha_complex.pyx
@@ -32,9 +32,9 @@ cdef extern from "Alpha_complex_interface.h" namespace "Gudhi":
vector[double] get_point(int vertex) nogil except +
void create_simplex_tree(Simplex_tree_interface_full_featured* simplex_tree, double max_alpha_square, bool default_filtration_value) nogil except +
@staticmethod
- void set_float_relative_precision(double precision)
+ void set_float_relative_precision(double precision) nogil
@staticmethod
- double get_float_relative_precision()
+ double get_float_relative_precision() nogil
# AlphaComplex python interface
cdef class AlphaComplex: