summaryrefslogtreecommitdiff
path: root/src/python/include/Simplex_tree_interface.h
diff options
context:
space:
mode:
authorMarc Glisse <marc.glisse@inria.fr>2022-04-01 23:52:15 +0200
committerMarc Glisse <marc.glisse@inria.fr>2022-04-01 23:52:15 +0200
commitb28c83f63ca5d6437fa0a234ad3a1be692f07999 (patch)
treeccc98325230cd4212ca50aaebf3953dfe630a682 /src/python/include/Simplex_tree_interface.h
parent67b1e0ae09d8a975fb72faad1ee9b2f15f22e635 (diff)
parentb066b4376abf66ddc76e61a6a815a409b05fe59b (diff)
Merge remote-tracking branch 'origin/master' into insert
Diffstat (limited to 'src/python/include/Simplex_tree_interface.h')
-rw-r--r--src/python/include/Simplex_tree_interface.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/python/include/Simplex_tree_interface.h b/src/python/include/Simplex_tree_interface.h
index 95c0c037..b93ccfff 100644
--- a/src/python/include/Simplex_tree_interface.h
+++ b/src/python/include/Simplex_tree_interface.h
@@ -44,6 +44,7 @@ class Simplex_tree_interface : public Simplex_tree<SimplexTreeOptions> {
using Boundary_simplex_iterator = typename Base::Boundary_simplex_iterator;
using Siblings = typename Base::Siblings;
using Node = typename Base::Node;
+ typedef bool (*blocker_func_t)(Simplex simplex, void *user_data);
public:
@@ -221,6 +222,13 @@ class Simplex_tree_interface : public Simplex_tree<SimplexTreeOptions> {
#endif
}
+ void expansion_with_blockers_callback(int dimension, blocker_func_t user_func, void *user_data) {
+ Base::expansion_with_blockers(dimension, [&](Simplex_handle sh){
+ Simplex simplex(Base::simplex_vertex_range(sh).begin(), Base::simplex_vertex_range(sh).end());
+ return user_func(simplex, user_data);
+ });
+ }
+
// Iterator over the simplex tree
Complex_simplex_iterator get_simplices_iterator_begin() {
// this specific case works because the range is just a pair of iterators - won't work if range was a vector