summaryrefslogtreecommitdiff
path: root/src/cython/gudhi.pyx
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-02-16 13:58:13 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-02-16 13:58:13 +0000
commite3af32a438b9e2d8fc1e183c66d674b828408d18 (patch)
treedbcf4e0598c76eaee0aeaf11ac3460d7096c45fe /src/cython/gudhi.pyx
parent55ae0517b44744253a6aa4b1aec276e177d3b524 (diff)
Compilation issue fix
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/ST_cythonize@1025 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 87b1feef52d6bf03ed4a9d2ee89b909d3b7455f9
Diffstat (limited to 'src/cython/gudhi.pyx')
-rw-r--r--src/cython/gudhi.pyx7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/cython/gudhi.pyx b/src/cython/gudhi.pyx
index 37a49460..ae9669f4 100644
--- a/src/cython/gudhi.pyx
+++ b/src/cython/gudhi.pyx
@@ -50,7 +50,7 @@ cdef class SimplexTree:
return self.thisptr.get_coface_tree(simplex, <int>dim)
-#cdef class MiniSimplexTree:
+cdef class MiniSimplexTree:
cdef cgudhi.Simplex_tree_interface[cgudhi.Simplex_tree_options_mini] *thisptr
def __cinit__(self):
self.thisptr = new cgudhi.Simplex_tree_interface[cgudhi.Simplex_tree_options_mini]()
@@ -70,8 +70,3 @@ cdef class SimplexTree:
for i in simplex:
complex.push_back(i)
return self.thisptr.find_simplex(complex)
-
- def get_filtered_tree(self):
- return self.thisptr.get_filtered_tree()
- def get_skeleton_tree(self, dim):
- return self.thisptr.get_skeleton_tree(<int>dim)