summaryrefslogtreecommitdiff
path: root/src/python/gudhi/simplex_tree.pxd
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-08-12 13:06:03 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-08-12 13:06:03 +0200
commit458bc2dcf5044e1d5fde5326b2be35e526abd457 (patch)
tree9e1cca62b825421feec3835f1b548e0ef8dafad8 /src/python/gudhi/simplex_tree.pxd
parent8f9c065df7f4629555ef09292c14c293891f1bdc (diff)
code review: boundaries uses only once find and return a pair of iterator. Exception is raised when not found. tested
Diffstat (limited to 'src/python/gudhi/simplex_tree.pxd')
-rw-r--r--src/python/gudhi/simplex_tree.pxd3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/python/gudhi/simplex_tree.pxd b/src/python/gudhi/simplex_tree.pxd
index a64599e7..e1b03391 100644
--- a/src/python/gudhi/simplex_tree.pxd
+++ b/src/python/gudhi/simplex_tree.pxd
@@ -71,8 +71,7 @@ cdef extern from "Simplex_tree_interface.h" namespace "Gudhi":
vector[Simplex_tree_simplex_handle].const_iterator get_filtration_iterator_end() nogil
Simplex_tree_skeleton_iterator get_skeleton_iterator_begin(int dimension) nogil
Simplex_tree_skeleton_iterator get_skeleton_iterator_end(int dimension) nogil
- Simplex_tree_boundary_iterator get_boundary_iterator_begin(vector[int] simplex) nogil
- Simplex_tree_boundary_iterator get_boundary_iterator_end(vector[int] simplex) nogil
+ pair[Simplex_tree_boundary_iterator, Simplex_tree_boundary_iterator] get_boundary_iterators(vector[int] simplex) nogil except +
cdef extern from "Persistent_cohomology_interface.h" namespace "Gudhi":
cdef cppclass Simplex_tree_persistence_interface "Gudhi::Persistent_cohomology_interface<Gudhi::Simplex_tree<Gudhi::Simplex_tree_options_full_featured>>":