summaryrefslogtreecommitdiff
path: root/src/python/gudhi/simplex_tree.pyx
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-08-25 08:43:19 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-08-25 08:43:19 +0200
commit12371aa8ec7693f97200c5b3df3aa20add4ad621 (patch)
tree4e66b451174476672906d508eada3aa01347125f /src/python/gudhi/simplex_tree.pyx
parentddb2118f0af865588d7c14b88171dc04bb27c529 (diff)
Code review: min_dim = 0 as default and some doc review
Diffstat (limited to 'src/python/gudhi/simplex_tree.pyx')
-rw-r--r--src/python/gudhi/simplex_tree.pyx13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/python/gudhi/simplex_tree.pyx b/src/python/gudhi/simplex_tree.pyx
index 657d55be..f28990cc 100644
--- a/src/python/gudhi/simplex_tree.pyx
+++ b/src/python/gudhi/simplex_tree.pyx
@@ -358,14 +358,17 @@ cdef class SimplexTree:
"""
return self.get_ptr().make_filtration_non_decreasing()
- def reset_filtration(self, filtration, min_dim):
- """This function resets filtration value from a given dimension.
- Resets all the simplex tree when `min_dim = 0`.
+ def reset_filtration(self, filtration, min_dim = 0):
+ """This function resets filtration value from a given dimension. Resets all the simplex tree when
+ `min_dim = 0`.
+ `reset_filtration` may break the filtration property with `min_dim > 0`, and it is the user's responsibility to
+ make it a valid filtration (using a large enough `filt_value`, or calling `make_filtration_non_decreasing`
+ afterwards for instance).
:param filtration: New threshold value.
:type filtration: float.
- :param max_dim: The minimal dimension.
- :type max_dim: int.
+ :param min_dim: The minimal dimension. Default value is 0.
+ :type min_dim: int.
"""
self.get_ptr().reset_filtration(filtration, min_dim)