summaryrefslogtreecommitdiff
path: root/src/python/gudhi
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-05-21 11:08:25 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-05-21 11:08:25 +0200
commitc7b82f49f01075519189f1fdb56cc485e4ad9f46 (patch)
tree3ab3cd7e9fcaa32788865fa75a852f88c2d4a63c /src/python/gudhi
parent57eb31fdb537406925661dad84ef6d4b2e02b67b (diff)
Use unique_pointer and template alpha complex interface for python interface
Diffstat (limited to 'src/python/gudhi')
-rw-r--r--src/python/gudhi/alpha_complex.pyx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/gudhi/alpha_complex.pyx b/src/python/gudhi/alpha_complex.pyx
index d75e374a..2b7ce00d 100644
--- a/src/python/gudhi/alpha_complex.pyx
+++ b/src/python/gudhi/alpha_complex.pyx
@@ -26,7 +26,7 @@ __copyright__ = "Copyright (C) 2016 Inria"
__license__ = "GPL v3"
cdef extern from "Alpha_complex_interface.h" namespace "Gudhi":
- cdef cppclass Alpha_complex_interface "Gudhi::alpha_complex::Alpha_complex_interface":
+ cdef cppclass Alpha_complex_interface "Gudhi::alpha_complex::Alpha_complex_interface<Gudhi::alpha_complex::Exact_kernel>":
Alpha_complex_interface(vector[vector[double]] points) nogil except +
# bool from_file is a workaround for cython to find the correct signature
Alpha_complex_interface(string off_file, bool from_file) nogil except +