summaryrefslogtreecommitdiff
path: root/src/python/gudhi/simplex_tree.pxd
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-09-01 14:51:25 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-09-01 14:51:25 +0200
commitc2eb0484191f89fcbe40bc4ab04943eb808f12a9 (patch)
tree272289c27b583d4444e5e273ced5846561b5a9d1 /src/python/gudhi/simplex_tree.pxd
parentcea821f9ca34c270a5ccc047342c2c21ae79a6c0 (diff)
expansion with blocker and how to modify filtration value
Diffstat (limited to 'src/python/gudhi/simplex_tree.pxd')
-rw-r--r--src/python/gudhi/simplex_tree.pxd2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/gudhi/simplex_tree.pxd b/src/python/gudhi/simplex_tree.pxd
index 44533d7f..80c6ffca 100644
--- a/src/python/gudhi/simplex_tree.pxd
+++ b/src/python/gudhi/simplex_tree.pxd
@@ -66,7 +66,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
- #
+ # Expansion with blockers
ctypedef bool (*blocker_func)(vector[int], void *user_data)
void expansion_with_blockers_callback(int dimension, blocker_func user_func, void *user_data)