summaryrefslogtreecommitdiff
path: root/src/cython/gudhi/rips_complex.pyx
diff options
context:
space:
mode:
Diffstat (limited to 'src/cython/gudhi/rips_complex.pyx')
-rw-r--r--src/cython/gudhi/rips_complex.pyx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/cython/gudhi/rips_complex.pyx b/src/cython/gudhi/rips_complex.pyx
index 1a6c8571..f2cd6a8d 100644
--- a/src/cython/gudhi/rips_complex.pyx
+++ b/src/cython/gudhi/rips_complex.pyx
@@ -97,6 +97,7 @@ cdef class RipsComplex:
:rtype: SimplexTree
"""
stree = SimplexTree()
- cdef intptr_t stree_ptr=stree.thisptr
- self.thisref.create_simplex_tree(<Simplex_tree_interface_full_featured*>stree_ptr, max_dimension)
+ cdef intptr_t stree_int_ptr=stree.thisptr
+ self.thisref.create_simplex_tree(<Simplex_tree_interface_full_featured*>stree_int_ptr,
+ max_dimension)
return stree