summaryrefslogtreecommitdiff
path: root/src/cython/gudhi/euclidean_witness_complex.pyx
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-09-05 12:54:57 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-09-05 12:54:57 +0200
commit3c96720c786462827820f4d35e720c8f2084867b (patch)
tree36d2e672c28ea968f8a6b481f3c40292e3aa51f1 /src/cython/gudhi/euclidean_witness_complex.pyx
parent51a38f313f633e1c593d77319f3752a010da782c (diff)
Reduce number of code line
Diffstat (limited to 'src/cython/gudhi/euclidean_witness_complex.pyx')
-rw-r--r--src/cython/gudhi/euclidean_witness_complex.pyx7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/cython/gudhi/euclidean_witness_complex.pyx b/src/cython/gudhi/euclidean_witness_complex.pyx
index 92d54eb5..2531919b 100644
--- a/src/cython/gudhi/euclidean_witness_complex.pyx
+++ b/src/cython/gudhi/euclidean_witness_complex.pyx
@@ -71,11 +71,12 @@ cdef class EuclideanWitnessComplex:
"""
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(stree_ptr, max_alpha_square, limit_dimension)
+ self.thisptr.create_simplex_tree(<Simplex_tree_interface_full_featured*>stree_int_ptr,
+ max_alpha_square, limit_dimension)
else:
- self.thisptr.create_simplex_tree(stree_ptr, max_alpha_square)
+ self.thisptr.create_simplex_tree(<Simplex_tree_interface_full_featured*>stree_int_ptr,
+ max_alpha_square)
return stree
def get_point(self, vertex):