summaryrefslogtreecommitdiff
path: root/src/cython/gudhi/euclidean_witness_complex.pyx
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-08-07 11:34:57 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-08-07 11:34:57 +0200
commitd7e1a3a81dfa91a29e433887fcfdc73310f8db32 (patch)
tree6b818727315d157dd26e39cb8bd58a26af53bafa /src/cython/gudhi/euclidean_witness_complex.pyx
parent9b40c817277fa1de6c2b2e7b796ad0157ace4c61 (diff)
Add the rest of modules
Diffstat (limited to 'src/cython/gudhi/euclidean_witness_complex.pyx')
-rw-r--r--src/cython/gudhi/euclidean_witness_complex.pyx14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/cython/gudhi/euclidean_witness_complex.pyx b/src/cython/gudhi/euclidean_witness_complex.pyx
index e687c6f3..92d54eb5 100644
--- a/src/cython/gudhi/euclidean_witness_complex.pyx
+++ b/src/cython/gudhi/euclidean_witness_complex.pyx
@@ -1,6 +1,10 @@
from cython cimport numeric
from libcpp.vector cimport vector
from libcpp.utility cimport pair
+from libc.stdint cimport intptr_t
+
+from gudhi.simplex_tree cimport *
+from gudhi.simplex_tree import SimplexTree
""" This file is part of the Gudhi Library - https://gudhi.inria.fr/ - which is released under MIT.
See file LICENSE or go to https://gudhi.inria.fr/licensing/ for full license details.
@@ -65,12 +69,14 @@ cdef class EuclideanWitnessComplex:
:returns: A simplex tree created from the Delaunay Triangulation.
:rtype: SimplexTree
"""
- simplex_tree = SimplexTree()
+ stree = SimplexTree()
+ cdef intptr_t stree_int_ptr=stree.thisptr
+ cdef Simplex_tree_interface_full_featured* stree_ptr = <Simplex_tree_interface_full_featured*>stree_int_ptr
if limit_dimension is not -1:
- self.thisptr.create_simplex_tree(simplex_tree.thisptr, max_alpha_square, limit_dimension)
+ self.thisptr.create_simplex_tree(stree_ptr, max_alpha_square, limit_dimension)
else:
- self.thisptr.create_simplex_tree(simplex_tree.thisptr, max_alpha_square)
- return simplex_tree
+ self.thisptr.create_simplex_tree(stree_ptr, max_alpha_square)
+ return stree
def get_point(self, vertex):
"""This function returns the point corresponding to a given vertex.